Models
Types

Models

cms_category

Name Value
@@unique
  • territory
  • key
  • code
@@index
  • territory
  • key
  • code

Fields

Name Type Attributes Required Comment
id BigInt
  • @id
  • @default(autoincrement())
Yes -
territory String
  • -
Yes -
key String
  • -
Yes -
code String
  • -
Yes -
title Json?
  • -
No -
on_used Boolean
  • @default(true)
Yes -
sequence Int?
  • @default(0)
No -
statistics Json?
  • -
No -
parameter_values Json?
  • -
No -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -
cms_category_mapping cms_category_mapping[]
  • -
Yes -

Operations

findUnique

Find zero or one Cms_category

// Get one Cms_category
const cms_category = await prisma.cms_category.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_categoryWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Cms_category

// Get one Cms_category
const cms_category = await prisma.cms_category.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_categoryWhereInput No
orderBy cms_categoryOrderByWithRelationInput[] | cms_categoryOrderByWithRelationInput No
cursor cms_categoryWhereUniqueInput No
take Int No
skip Int No
distinct Cms_categoryScalarFieldEnum | Cms_categoryScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Cms_category

// Get all Cms_category
const Cms_category = await prisma.cms_category.findMany()
// Get first 10 Cms_category
const Cms_category = await prisma.cms_category.findMany({ take: 10 })

Input

Name Type Required
where cms_categoryWhereInput No
orderBy cms_categoryOrderByWithRelationInput[] | cms_categoryOrderByWithRelationInput No
cursor cms_categoryWhereUniqueInput No
take Int No
skip Int No
distinct Cms_categoryScalarFieldEnum | Cms_categoryScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Cms_category

// Create one Cms_category
const Cms_category = await prisma.cms_category.create({
  data: {
    // ... data to create a Cms_category
  }
})

Input

Name Type Required
data cms_categoryCreateInput | cms_categoryUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Cms_category

// Delete one Cms_category
const Cms_category = await prisma.cms_category.delete({
  where: {
    // ... filter to delete one Cms_category
  }
})

Input

Name Type Required
where cms_categoryWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Cms_category

// Update one Cms_category
const cms_category = await prisma.cms_category.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_categoryUpdateInput | cms_categoryUncheckedUpdateInput Yes
where cms_categoryWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Cms_category

// Delete a few Cms_category
const { count } = await prisma.cms_category.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_categoryWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Cms_category

const { count } = await prisma.cms_category.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_categoryUpdateManyMutationInput | cms_categoryUncheckedUpdateManyInput Yes
where cms_categoryWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Cms_category

// Update or create a Cms_category
const cms_category = await prisma.cms_category.upsert({
  create: {
    // ... data to create a Cms_category
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Cms_category we want to update
  }
})

Input

Name Type Required
where cms_categoryWhereUniqueInput Yes
create cms_categoryCreateInput | cms_categoryUncheckedCreateInput Yes
update cms_categoryUpdateInput | cms_categoryUncheckedUpdateInput Yes

Output

Required: Yes
List: No

cms_category_mapping

Name Value
@@id
  • id
  • resource_id
@@unique
  • resource_id
  • category_id
@@index
  • resource_id
  • category_id

Fields

Name Type Attributes Required Comment
id BigInt
  • @default(autoincrement())
Yes -
resource_id BigInt
  • -
Yes -
category_id BigInt
  • -
Yes -
parameter_values Json?
  • -
No -
sequence Int?
  • @default(0)
No -
enable Boolean?
  • @default(true)
No -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -
cms_category cms_category
  • -
Yes -
cms_resource cms_resource
  • -
Yes -

Operations

findUnique

Find zero or one Cms_category_mapping

// Get one Cms_category_mapping
const cms_category_mapping = await prisma.cms_category_mapping.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_category_mappingWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Cms_category_mapping

// Get one Cms_category_mapping
const cms_category_mapping = await prisma.cms_category_mapping.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_category_mappingWhereInput No
orderBy cms_category_mappingOrderByWithRelationInput[] | cms_category_mappingOrderByWithRelationInput No
cursor cms_category_mappingWhereUniqueInput No
take Int No
skip Int No
distinct Cms_category_mappingScalarFieldEnum | Cms_category_mappingScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Cms_category_mapping

// Get all Cms_category_mapping
const Cms_category_mapping = await prisma.cms_category_mapping.findMany()
// Get first 10 Cms_category_mapping
const Cms_category_mapping = await prisma.cms_category_mapping.findMany({ take: 10 })

Input

Name Type Required
where cms_category_mappingWhereInput No
orderBy cms_category_mappingOrderByWithRelationInput[] | cms_category_mappingOrderByWithRelationInput No
cursor cms_category_mappingWhereUniqueInput No
take Int No
skip Int No
distinct Cms_category_mappingScalarFieldEnum | Cms_category_mappingScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Cms_category_mapping

// Create one Cms_category_mapping
const Cms_category_mapping = await prisma.cms_category_mapping.create({
  data: {
    // ... data to create a Cms_category_mapping
  }
})

Input

Name Type Required
data cms_category_mappingCreateInput | cms_category_mappingUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Cms_category_mapping

// Delete one Cms_category_mapping
const Cms_category_mapping = await prisma.cms_category_mapping.delete({
  where: {
    // ... filter to delete one Cms_category_mapping
  }
})

Input

Name Type Required
where cms_category_mappingWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Cms_category_mapping

// Update one Cms_category_mapping
const cms_category_mapping = await prisma.cms_category_mapping.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_category_mappingUpdateInput | cms_category_mappingUncheckedUpdateInput Yes
where cms_category_mappingWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Cms_category_mapping

// Delete a few Cms_category_mapping
const { count } = await prisma.cms_category_mapping.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_category_mappingWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Cms_category_mapping

const { count } = await prisma.cms_category_mapping.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_category_mappingUpdateManyMutationInput | cms_category_mappingUncheckedUpdateManyInput Yes
where cms_category_mappingWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Cms_category_mapping

// Update or create a Cms_category_mapping
const cms_category_mapping = await prisma.cms_category_mapping.upsert({
  create: {
    // ... data to create a Cms_category_mapping
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Cms_category_mapping we want to update
  }
})

Input

Name Type Required
where cms_category_mappingWhereUniqueInput Yes
create cms_category_mappingCreateInput | cms_category_mappingUncheckedCreateInput Yes
update cms_category_mappingUpdateInput | cms_category_mappingUncheckedUpdateInput Yes

Output

Required: Yes
List: No

cms_channel

Fields

Name Type Attributes Required Comment
id BigInt
  • @id
Yes -
licensor_id BigInt
  • -
Yes -
code String
  • @unique
Yes -
handle String
  • @unique
Yes -
title Json?
  • -
No -
image Json?
  • -
No -
description Json?
  • -
No -
statistics Json?
  • -
No -
parameter_values Json?
  • -
No -
seo_info Json?
  • -
No -
territory String
  • @default(GLOBAL)
Yes -
default_territory String
  • -
Yes -
created_date DateTime?
  • @default(now())
No -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -
title_en String?
  • -
No -
title_zhtw String?
  • -
No -
title_inid String?
  • -
No -

Operations

findUnique

Find zero or one Cms_channel

// Get one Cms_channel
const cms_channel = await prisma.cms_channel.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_channelWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Cms_channel

// Get one Cms_channel
const cms_channel = await prisma.cms_channel.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_channelWhereInput No
orderBy cms_channelOrderByWithRelationInput[] | cms_channelOrderByWithRelationInput No
cursor cms_channelWhereUniqueInput No
take Int No
skip Int No
distinct Cms_channelScalarFieldEnum | Cms_channelScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Cms_channel

// Get all Cms_channel
const Cms_channel = await prisma.cms_channel.findMany()
// Get first 10 Cms_channel
const Cms_channel = await prisma.cms_channel.findMany({ take: 10 })

Input

Name Type Required
where cms_channelWhereInput No
orderBy cms_channelOrderByWithRelationInput[] | cms_channelOrderByWithRelationInput No
cursor cms_channelWhereUniqueInput No
take Int No
skip Int No
distinct Cms_channelScalarFieldEnum | Cms_channelScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Cms_channel

// Create one Cms_channel
const Cms_channel = await prisma.cms_channel.create({
  data: {
    // ... data to create a Cms_channel
  }
})

Input

Name Type Required
data cms_channelCreateInput | cms_channelUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Cms_channel

// Delete one Cms_channel
const Cms_channel = await prisma.cms_channel.delete({
  where: {
    // ... filter to delete one Cms_channel
  }
})

Input

Name Type Required
where cms_channelWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Cms_channel

// Update one Cms_channel
const cms_channel = await prisma.cms_channel.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_channelUpdateInput | cms_channelUncheckedUpdateInput Yes
where cms_channelWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Cms_channel

// Delete a few Cms_channel
const { count } = await prisma.cms_channel.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_channelWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Cms_channel

const { count } = await prisma.cms_channel.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_channelUpdateManyMutationInput | cms_channelUncheckedUpdateManyInput Yes
where cms_channelWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Cms_channel

// Update or create a Cms_channel
const cms_channel = await prisma.cms_channel.upsert({
  create: {
    // ... data to create a Cms_channel
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Cms_channel we want to update
  }
})

Input

Name Type Required
where cms_channelWhereUniqueInput Yes
create cms_channelCreateInput | cms_channelUncheckedCreateInput Yes
update cms_channelUpdateInput | cms_channelUncheckedUpdateInput Yes

Output

Required: Yes
List: No

cms_curation

Fields

Name Type Attributes Required Comment
id BigInt
  • @id
  • @default(autoincrement())
Yes -
key String?
  • @unique
No -
code String?
  • -
No -
title Json?
  • -
No -
company_id String
  • -
Yes -
territory String
  • @default(GLOBAL)
Yes -
default_territory String?
  • -
No -
status String
  • @default(INITIAL)
Yes -
detail_parameter Json?
  • -
No -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -
title_en String?
  • -
No -
title_zhtw String?
  • -
No -
title_inid String?
  • -
No -
cms_curation_mapping cms_curation_mapping[]
  • -
Yes -

Operations

findUnique

Find zero or one Cms_curation

// Get one Cms_curation
const cms_curation = await prisma.cms_curation.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_curationWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Cms_curation

// Get one Cms_curation
const cms_curation = await prisma.cms_curation.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_curationWhereInput No
orderBy cms_curationOrderByWithRelationInput[] | cms_curationOrderByWithRelationInput No
cursor cms_curationWhereUniqueInput No
take Int No
skip Int No
distinct Cms_curationScalarFieldEnum | Cms_curationScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Cms_curation

// Get all Cms_curation
const Cms_curation = await prisma.cms_curation.findMany()
// Get first 10 Cms_curation
const Cms_curation = await prisma.cms_curation.findMany({ take: 10 })

Input

Name Type Required
where cms_curationWhereInput No
orderBy cms_curationOrderByWithRelationInput[] | cms_curationOrderByWithRelationInput No
cursor cms_curationWhereUniqueInput No
take Int No
skip Int No
distinct Cms_curationScalarFieldEnum | Cms_curationScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Cms_curation

// Create one Cms_curation
const Cms_curation = await prisma.cms_curation.create({
  data: {
    // ... data to create a Cms_curation
  }
})

Input

Name Type Required
data cms_curationCreateInput | cms_curationUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Cms_curation

// Delete one Cms_curation
const Cms_curation = await prisma.cms_curation.delete({
  where: {
    // ... filter to delete one Cms_curation
  }
})

Input

Name Type Required
where cms_curationWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Cms_curation

// Update one Cms_curation
const cms_curation = await prisma.cms_curation.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_curationUpdateInput | cms_curationUncheckedUpdateInput Yes
where cms_curationWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Cms_curation

// Delete a few Cms_curation
const { count } = await prisma.cms_curation.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_curationWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Cms_curation

const { count } = await prisma.cms_curation.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_curationUpdateManyMutationInput | cms_curationUncheckedUpdateManyInput Yes
where cms_curationWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Cms_curation

// Update or create a Cms_curation
const cms_curation = await prisma.cms_curation.upsert({
  create: {
    // ... data to create a Cms_curation
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Cms_curation we want to update
  }
})

Input

Name Type Required
where cms_curationWhereUniqueInput Yes
create cms_curationCreateInput | cms_curationUncheckedCreateInput Yes
update cms_curationUpdateInput | cms_curationUncheckedUpdateInput Yes

Output

Required: Yes
List: No

cms_curation_mapping

Name Value
@@unique
  • resource_id
  • curation_id
  • edited
@@index
  • resource_id
  • curation_id
  • edited

Fields

Name Type Attributes Required Comment
id BigInt
  • @id
  • @default(autoincrement())
Yes -
resource_id BigInt
  • -
Yes -
curation_id BigInt
  • -
Yes -
edited Boolean?
  • @default(false)
No -
sequence Int?
  • @default(99999999)
No -
parameter_values Json?
  • -
No -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -
cms_curation cms_curation
  • -
Yes -

Operations

findUnique

Find zero or one Cms_curation_mapping

// Get one Cms_curation_mapping
const cms_curation_mapping = await prisma.cms_curation_mapping.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_curation_mappingWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Cms_curation_mapping

// Get one Cms_curation_mapping
const cms_curation_mapping = await prisma.cms_curation_mapping.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_curation_mappingWhereInput No
orderBy cms_curation_mappingOrderByWithRelationInput[] | cms_curation_mappingOrderByWithRelationInput No
cursor cms_curation_mappingWhereUniqueInput No
take Int No
skip Int No
distinct Cms_curation_mappingScalarFieldEnum | Cms_curation_mappingScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Cms_curation_mapping

// Get all Cms_curation_mapping
const Cms_curation_mapping = await prisma.cms_curation_mapping.findMany()
// Get first 10 Cms_curation_mapping
const Cms_curation_mapping = await prisma.cms_curation_mapping.findMany({ take: 10 })

Input

Name Type Required
where cms_curation_mappingWhereInput No
orderBy cms_curation_mappingOrderByWithRelationInput[] | cms_curation_mappingOrderByWithRelationInput No
cursor cms_curation_mappingWhereUniqueInput No
take Int No
skip Int No
distinct Cms_curation_mappingScalarFieldEnum | Cms_curation_mappingScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Cms_curation_mapping

// Create one Cms_curation_mapping
const Cms_curation_mapping = await prisma.cms_curation_mapping.create({
  data: {
    // ... data to create a Cms_curation_mapping
  }
})

Input

Name Type Required
data cms_curation_mappingCreateInput | cms_curation_mappingUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Cms_curation_mapping

// Delete one Cms_curation_mapping
const Cms_curation_mapping = await prisma.cms_curation_mapping.delete({
  where: {
    // ... filter to delete one Cms_curation_mapping
  }
})

Input

Name Type Required
where cms_curation_mappingWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Cms_curation_mapping

// Update one Cms_curation_mapping
const cms_curation_mapping = await prisma.cms_curation_mapping.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_curation_mappingUpdateInput | cms_curation_mappingUncheckedUpdateInput Yes
where cms_curation_mappingWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Cms_curation_mapping

// Delete a few Cms_curation_mapping
const { count } = await prisma.cms_curation_mapping.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_curation_mappingWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Cms_curation_mapping

const { count } = await prisma.cms_curation_mapping.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_curation_mappingUpdateManyMutationInput | cms_curation_mappingUncheckedUpdateManyInput Yes
where cms_curation_mappingWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Cms_curation_mapping

// Update or create a Cms_curation_mapping
const cms_curation_mapping = await prisma.cms_curation_mapping.upsert({
  create: {
    // ... data to create a Cms_curation_mapping
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Cms_curation_mapping we want to update
  }
})

Input

Name Type Required
where cms_curation_mappingWhereUniqueInput Yes
create cms_curation_mappingCreateInput | cms_curation_mappingUncheckedCreateInput Yes
update cms_curation_mappingUpdateInput | cms_curation_mappingUncheckedUpdateInput Yes

Output

Required: Yes
List: No

cms_curation_scheduling

Name Value
@@unique
  • key
  • territory
  • published_date
@@index
  • key
  • territory
  • published_date

Fields

Name Type Attributes Required Comment
id BigInt
  • @id
  • @default(autoincrement())
Yes -
curation_id BigInt
  • -
Yes -
title Json?
  • -
No -
key String?
  • -
No -
territory String?
  • -
No -
description String
  • -
Yes -
status String
  • -
Yes -
published_date DateTime?
  • -
No -
synchronized Boolean
  • @default(false)
Yes -
enabled Boolean
  • @default(true)
Yes -
created_user String
  • @default(SYSTEM)
Yes -
created_date DateTime
  • @default(now())
Yes -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -
cms_curation_scheduling_item cms_curation_scheduling_item[]
  • -
Yes -

Operations

findUnique

Find zero or one Cms_curation_scheduling

// Get one Cms_curation_scheduling
const cms_curation_scheduling = await prisma.cms_curation_scheduling.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_curation_schedulingWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Cms_curation_scheduling

// Get one Cms_curation_scheduling
const cms_curation_scheduling = await prisma.cms_curation_scheduling.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_curation_schedulingWhereInput No
orderBy cms_curation_schedulingOrderByWithRelationInput[] | cms_curation_schedulingOrderByWithRelationInput No
cursor cms_curation_schedulingWhereUniqueInput No
take Int No
skip Int No
distinct Cms_curation_schedulingScalarFieldEnum | Cms_curation_schedulingScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Cms_curation_scheduling

// Get all Cms_curation_scheduling
const Cms_curation_scheduling = await prisma.cms_curation_scheduling.findMany()
// Get first 10 Cms_curation_scheduling
const Cms_curation_scheduling = await prisma.cms_curation_scheduling.findMany({ take: 10 })

Input

Name Type Required
where cms_curation_schedulingWhereInput No
orderBy cms_curation_schedulingOrderByWithRelationInput[] | cms_curation_schedulingOrderByWithRelationInput No
cursor cms_curation_schedulingWhereUniqueInput No
take Int No
skip Int No
distinct Cms_curation_schedulingScalarFieldEnum | Cms_curation_schedulingScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Cms_curation_scheduling

// Create one Cms_curation_scheduling
const Cms_curation_scheduling = await prisma.cms_curation_scheduling.create({
  data: {
    // ... data to create a Cms_curation_scheduling
  }
})

Input

Name Type Required
data cms_curation_schedulingCreateInput | cms_curation_schedulingUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Cms_curation_scheduling

// Delete one Cms_curation_scheduling
const Cms_curation_scheduling = await prisma.cms_curation_scheduling.delete({
  where: {
    // ... filter to delete one Cms_curation_scheduling
  }
})

Input

Name Type Required
where cms_curation_schedulingWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Cms_curation_scheduling

// Update one Cms_curation_scheduling
const cms_curation_scheduling = await prisma.cms_curation_scheduling.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_curation_schedulingUpdateInput | cms_curation_schedulingUncheckedUpdateInput Yes
where cms_curation_schedulingWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Cms_curation_scheduling

// Delete a few Cms_curation_scheduling
const { count } = await prisma.cms_curation_scheduling.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_curation_schedulingWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Cms_curation_scheduling

const { count } = await prisma.cms_curation_scheduling.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_curation_schedulingUpdateManyMutationInput | cms_curation_schedulingUncheckedUpdateManyInput Yes
where cms_curation_schedulingWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Cms_curation_scheduling

// Update or create a Cms_curation_scheduling
const cms_curation_scheduling = await prisma.cms_curation_scheduling.upsert({
  create: {
    // ... data to create a Cms_curation_scheduling
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Cms_curation_scheduling we want to update
  }
})

Input

Name Type Required
where cms_curation_schedulingWhereUniqueInput Yes
create cms_curation_schedulingCreateInput | cms_curation_schedulingUncheckedCreateInput Yes
update cms_curation_schedulingUpdateInput | cms_curation_schedulingUncheckedUpdateInput Yes

Output

Required: Yes
List: No

cms_curation_scheduling_item

Name Value
@@unique
  • parent_id
  • resource_id
  • curation_id
@@index
  • parent_id
  • resource_id
  • curation_id

Fields

Name Type Attributes Required Comment
id BigInt
  • @id
  • @default(autoincrement())
Yes -
parent_id BigInt
  • -
Yes -
resource_id BigInt
  • -
Yes -
curation_id BigInt
  • -
Yes -
parameter_values Json?
  • -
No -
sequence Int?
  • @default(99999999)
No -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -
cms_curation_scheduling cms_curation_scheduling
  • -
Yes -

Operations

findUnique

Find zero or one Cms_curation_scheduling_item

// Get one Cms_curation_scheduling_item
const cms_curation_scheduling_item = await prisma.cms_curation_scheduling_item.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_curation_scheduling_itemWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Cms_curation_scheduling_item

// Get one Cms_curation_scheduling_item
const cms_curation_scheduling_item = await prisma.cms_curation_scheduling_item.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_curation_scheduling_itemWhereInput No
orderBy cms_curation_scheduling_itemOrderByWithRelationInput[] | cms_curation_scheduling_itemOrderByWithRelationInput No
cursor cms_curation_scheduling_itemWhereUniqueInput No
take Int No
skip Int No
distinct Cms_curation_scheduling_itemScalarFieldEnum | Cms_curation_scheduling_itemScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Cms_curation_scheduling_item

// Get all Cms_curation_scheduling_item
const Cms_curation_scheduling_item = await prisma.cms_curation_scheduling_item.findMany()
// Get first 10 Cms_curation_scheduling_item
const Cms_curation_scheduling_item = await prisma.cms_curation_scheduling_item.findMany({ take: 10 })

Input

Name Type Required
where cms_curation_scheduling_itemWhereInput No
orderBy cms_curation_scheduling_itemOrderByWithRelationInput[] | cms_curation_scheduling_itemOrderByWithRelationInput No
cursor cms_curation_scheduling_itemWhereUniqueInput No
take Int No
skip Int No
distinct Cms_curation_scheduling_itemScalarFieldEnum | Cms_curation_scheduling_itemScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Cms_curation_scheduling_item

// Create one Cms_curation_scheduling_item
const Cms_curation_scheduling_item = await prisma.cms_curation_scheduling_item.create({
  data: {
    // ... data to create a Cms_curation_scheduling_item
  }
})

Input

Name Type Required
data cms_curation_scheduling_itemCreateInput | cms_curation_scheduling_itemUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Cms_curation_scheduling_item

// Delete one Cms_curation_scheduling_item
const Cms_curation_scheduling_item = await prisma.cms_curation_scheduling_item.delete({
  where: {
    // ... filter to delete one Cms_curation_scheduling_item
  }
})

Input

Name Type Required
where cms_curation_scheduling_itemWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Cms_curation_scheduling_item

// Update one Cms_curation_scheduling_item
const cms_curation_scheduling_item = await prisma.cms_curation_scheduling_item.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_curation_scheduling_itemUpdateInput | cms_curation_scheduling_itemUncheckedUpdateInput Yes
where cms_curation_scheduling_itemWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Cms_curation_scheduling_item

// Delete a few Cms_curation_scheduling_item
const { count } = await prisma.cms_curation_scheduling_item.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_curation_scheduling_itemWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Cms_curation_scheduling_item

const { count } = await prisma.cms_curation_scheduling_item.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_curation_scheduling_itemUpdateManyMutationInput | cms_curation_scheduling_itemUncheckedUpdateManyInput Yes
where cms_curation_scheduling_itemWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Cms_curation_scheduling_item

// Update or create a Cms_curation_scheduling_item
const cms_curation_scheduling_item = await prisma.cms_curation_scheduling_item.upsert({
  create: {
    // ... data to create a Cms_curation_scheduling_item
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Cms_curation_scheduling_item we want to update
  }
})

Input

Name Type Required
where cms_curation_scheduling_itemWhereUniqueInput Yes
create cms_curation_scheduling_itemCreateInput | cms_curation_scheduling_itemUncheckedCreateInput Yes
update cms_curation_scheduling_itemUpdateInput | cms_curation_scheduling_itemUncheckedUpdateInput Yes

Output

Required: Yes
List: No

cms_hash_tag

Fields

Name Type Attributes Required Comment
id BigInt
  • @id
  • @default(autoincrement())
Yes -
title String
  • @unique
Yes -
sequence Int?
  • @default(0)
No -
statistics Json?
  • -
No -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -
cms_hash_tag_mapping cms_hash_tag_mapping[]
  • -
Yes -

Operations

findUnique

Find zero or one Cms_hash_tag

// Get one Cms_hash_tag
const cms_hash_tag = await prisma.cms_hash_tag.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_hash_tagWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Cms_hash_tag

// Get one Cms_hash_tag
const cms_hash_tag = await prisma.cms_hash_tag.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_hash_tagWhereInput No
orderBy cms_hash_tagOrderByWithRelationInput[] | cms_hash_tagOrderByWithRelationInput No
cursor cms_hash_tagWhereUniqueInput No
take Int No
skip Int No
distinct Cms_hash_tagScalarFieldEnum | Cms_hash_tagScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Cms_hash_tag

// Get all Cms_hash_tag
const Cms_hash_tag = await prisma.cms_hash_tag.findMany()
// Get first 10 Cms_hash_tag
const Cms_hash_tag = await prisma.cms_hash_tag.findMany({ take: 10 })

Input

Name Type Required
where cms_hash_tagWhereInput No
orderBy cms_hash_tagOrderByWithRelationInput[] | cms_hash_tagOrderByWithRelationInput No
cursor cms_hash_tagWhereUniqueInput No
take Int No
skip Int No
distinct Cms_hash_tagScalarFieldEnum | Cms_hash_tagScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Cms_hash_tag

// Create one Cms_hash_tag
const Cms_hash_tag = await prisma.cms_hash_tag.create({
  data: {
    // ... data to create a Cms_hash_tag
  }
})

Input

Name Type Required
data cms_hash_tagCreateInput | cms_hash_tagUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Cms_hash_tag

// Delete one Cms_hash_tag
const Cms_hash_tag = await prisma.cms_hash_tag.delete({
  where: {
    // ... filter to delete one Cms_hash_tag
  }
})

Input

Name Type Required
where cms_hash_tagWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Cms_hash_tag

// Update one Cms_hash_tag
const cms_hash_tag = await prisma.cms_hash_tag.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_hash_tagUpdateInput | cms_hash_tagUncheckedUpdateInput Yes
where cms_hash_tagWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Cms_hash_tag

// Delete a few Cms_hash_tag
const { count } = await prisma.cms_hash_tag.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_hash_tagWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Cms_hash_tag

const { count } = await prisma.cms_hash_tag.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_hash_tagUpdateManyMutationInput | cms_hash_tagUncheckedUpdateManyInput Yes
where cms_hash_tagWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Cms_hash_tag

// Update or create a Cms_hash_tag
const cms_hash_tag = await prisma.cms_hash_tag.upsert({
  create: {
    // ... data to create a Cms_hash_tag
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Cms_hash_tag we want to update
  }
})

Input

Name Type Required
where cms_hash_tagWhereUniqueInput Yes
create cms_hash_tagCreateInput | cms_hash_tagUncheckedCreateInput Yes
update cms_hash_tagUpdateInput | cms_hash_tagUncheckedUpdateInput Yes

Output

Required: Yes
List: No

cms_hash_tag_mapping

Name Value
@@id
  • id
  • resource_id
@@unique
  • resource_id
  • hash_tag_id
@@index
  • resource_id
  • hash_tag_id

Fields

Name Type Attributes Required Comment
id BigInt
  • @default(autoincrement())
Yes -
resource_id BigInt
  • -
Yes -
hash_tag_id BigInt
  • -
Yes -
parameter_values Json?
  • -
No -
sequence Int?
  • @default(0)
No -
enable Boolean?
  • @default(true)
No -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -
cms_hash_tag cms_hash_tag
  • -
Yes -
cms_resource cms_resource
  • -
Yes -

Operations

findUnique

Find zero or one Cms_hash_tag_mapping

// Get one Cms_hash_tag_mapping
const cms_hash_tag_mapping = await prisma.cms_hash_tag_mapping.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_hash_tag_mappingWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Cms_hash_tag_mapping

// Get one Cms_hash_tag_mapping
const cms_hash_tag_mapping = await prisma.cms_hash_tag_mapping.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_hash_tag_mappingWhereInput No
orderBy cms_hash_tag_mappingOrderByWithRelationInput[] | cms_hash_tag_mappingOrderByWithRelationInput No
cursor cms_hash_tag_mappingWhereUniqueInput No
take Int No
skip Int No
distinct Cms_hash_tag_mappingScalarFieldEnum | Cms_hash_tag_mappingScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Cms_hash_tag_mapping

// Get all Cms_hash_tag_mapping
const Cms_hash_tag_mapping = await prisma.cms_hash_tag_mapping.findMany()
// Get first 10 Cms_hash_tag_mapping
const Cms_hash_tag_mapping = await prisma.cms_hash_tag_mapping.findMany({ take: 10 })

Input

Name Type Required
where cms_hash_tag_mappingWhereInput No
orderBy cms_hash_tag_mappingOrderByWithRelationInput[] | cms_hash_tag_mappingOrderByWithRelationInput No
cursor cms_hash_tag_mappingWhereUniqueInput No
take Int No
skip Int No
distinct Cms_hash_tag_mappingScalarFieldEnum | Cms_hash_tag_mappingScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Cms_hash_tag_mapping

// Create one Cms_hash_tag_mapping
const Cms_hash_tag_mapping = await prisma.cms_hash_tag_mapping.create({
  data: {
    // ... data to create a Cms_hash_tag_mapping
  }
})

Input

Name Type Required
data cms_hash_tag_mappingCreateInput | cms_hash_tag_mappingUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Cms_hash_tag_mapping

// Delete one Cms_hash_tag_mapping
const Cms_hash_tag_mapping = await prisma.cms_hash_tag_mapping.delete({
  where: {
    // ... filter to delete one Cms_hash_tag_mapping
  }
})

Input

Name Type Required
where cms_hash_tag_mappingWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Cms_hash_tag_mapping

// Update one Cms_hash_tag_mapping
const cms_hash_tag_mapping = await prisma.cms_hash_tag_mapping.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_hash_tag_mappingUpdateInput | cms_hash_tag_mappingUncheckedUpdateInput Yes
where cms_hash_tag_mappingWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Cms_hash_tag_mapping

// Delete a few Cms_hash_tag_mapping
const { count } = await prisma.cms_hash_tag_mapping.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_hash_tag_mappingWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Cms_hash_tag_mapping

const { count } = await prisma.cms_hash_tag_mapping.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_hash_tag_mappingUpdateManyMutationInput | cms_hash_tag_mappingUncheckedUpdateManyInput Yes
where cms_hash_tag_mappingWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Cms_hash_tag_mapping

// Update or create a Cms_hash_tag_mapping
const cms_hash_tag_mapping = await prisma.cms_hash_tag_mapping.upsert({
  create: {
    // ... data to create a Cms_hash_tag_mapping
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Cms_hash_tag_mapping we want to update
  }
})

Input

Name Type Required
where cms_hash_tag_mappingWhereUniqueInput Yes
create cms_hash_tag_mappingCreateInput | cms_hash_tag_mappingUncheckedCreateInput Yes
update cms_hash_tag_mappingUpdateInput | cms_hash_tag_mappingUncheckedUpdateInput Yes

Output

Required: Yes
List: No

cms_label_info

Fields

Name Type Attributes Required Comment
id BigInt
  • @id
  • @default(autoincrement())
Yes -
key String?
  • @unique
No -
title Json?
  • -
No -
sequence Int?
  • @default(0)
No -
statistics Json?
  • -
No -
parameter_values Json?
  • -
No -
updated_user String
  • -
Yes -
updated_date DateTime
  • @default(now())
Yes -
title_en String?
  • -
No -
title_zhtw String?
  • -
No -
title_inid String?
  • -
No -

Operations

findUnique

Find zero or one Cms_label_info

// Get one Cms_label_info
const cms_label_info = await prisma.cms_label_info.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_label_infoWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Cms_label_info

// Get one Cms_label_info
const cms_label_info = await prisma.cms_label_info.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_label_infoWhereInput No
orderBy cms_label_infoOrderByWithRelationInput[] | cms_label_infoOrderByWithRelationInput No
cursor cms_label_infoWhereUniqueInput No
take Int No
skip Int No
distinct Cms_label_infoScalarFieldEnum | Cms_label_infoScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Cms_label_info

// Get all Cms_label_info
const Cms_label_info = await prisma.cms_label_info.findMany()
// Get first 10 Cms_label_info
const Cms_label_info = await prisma.cms_label_info.findMany({ take: 10 })

Input

Name Type Required
where cms_label_infoWhereInput No
orderBy cms_label_infoOrderByWithRelationInput[] | cms_label_infoOrderByWithRelationInput No
cursor cms_label_infoWhereUniqueInput No
take Int No
skip Int No
distinct Cms_label_infoScalarFieldEnum | Cms_label_infoScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Cms_label_info

// Create one Cms_label_info
const Cms_label_info = await prisma.cms_label_info.create({
  data: {
    // ... data to create a Cms_label_info
  }
})

Input

Name Type Required
data cms_label_infoCreateInput | cms_label_infoUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Cms_label_info

// Delete one Cms_label_info
const Cms_label_info = await prisma.cms_label_info.delete({
  where: {
    // ... filter to delete one Cms_label_info
  }
})

Input

Name Type Required
where cms_label_infoWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Cms_label_info

// Update one Cms_label_info
const cms_label_info = await prisma.cms_label_info.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_label_infoUpdateInput | cms_label_infoUncheckedUpdateInput Yes
where cms_label_infoWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Cms_label_info

// Delete a few Cms_label_info
const { count } = await prisma.cms_label_info.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_label_infoWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Cms_label_info

const { count } = await prisma.cms_label_info.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_label_infoUpdateManyMutationInput | cms_label_infoUncheckedUpdateManyInput Yes
where cms_label_infoWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Cms_label_info

// Update or create a Cms_label_info
const cms_label_info = await prisma.cms_label_info.upsert({
  create: {
    // ... data to create a Cms_label_info
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Cms_label_info we want to update
  }
})

Input

Name Type Required
where cms_label_infoWhereUniqueInput Yes
create cms_label_infoCreateInput | cms_label_infoUncheckedCreateInput Yes
update cms_label_infoUpdateInput | cms_label_infoUncheckedUpdateInput Yes

Output

Required: Yes
List: No

cms_label_info_mapping

Name Value
@@unique
  • detail_mapping_id
  • label_info_id
@@index
  • detail_mapping_id
  • label_info_id

Fields

Name Type Attributes Required Comment
id BigInt
  • @id
  • @default(autoincrement())
Yes -
mapping_type String
  • -
Yes -
detail_mapping_id String
  • -
Yes -
label_info_id BigInt
  • -
Yes -
parameter_values Json?
  • -
No -
sequence Int?
  • @default(0)
No -
enable Boolean?
  • @default(true)
No -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one Cms_label_info_mapping

// Get one Cms_label_info_mapping
const cms_label_info_mapping = await prisma.cms_label_info_mapping.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_label_info_mappingWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Cms_label_info_mapping

// Get one Cms_label_info_mapping
const cms_label_info_mapping = await prisma.cms_label_info_mapping.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_label_info_mappingWhereInput No
orderBy cms_label_info_mappingOrderByWithRelationInput[] | cms_label_info_mappingOrderByWithRelationInput No
cursor cms_label_info_mappingWhereUniqueInput No
take Int No
skip Int No
distinct Cms_label_info_mappingScalarFieldEnum | Cms_label_info_mappingScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Cms_label_info_mapping

// Get all Cms_label_info_mapping
const Cms_label_info_mapping = await prisma.cms_label_info_mapping.findMany()
// Get first 10 Cms_label_info_mapping
const Cms_label_info_mapping = await prisma.cms_label_info_mapping.findMany({ take: 10 })

Input

Name Type Required
where cms_label_info_mappingWhereInput No
orderBy cms_label_info_mappingOrderByWithRelationInput[] | cms_label_info_mappingOrderByWithRelationInput No
cursor cms_label_info_mappingWhereUniqueInput No
take Int No
skip Int No
distinct Cms_label_info_mappingScalarFieldEnum | Cms_label_info_mappingScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Cms_label_info_mapping

// Create one Cms_label_info_mapping
const Cms_label_info_mapping = await prisma.cms_label_info_mapping.create({
  data: {
    // ... data to create a Cms_label_info_mapping
  }
})

Input

Name Type Required
data cms_label_info_mappingCreateInput | cms_label_info_mappingUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Cms_label_info_mapping

// Delete one Cms_label_info_mapping
const Cms_label_info_mapping = await prisma.cms_label_info_mapping.delete({
  where: {
    // ... filter to delete one Cms_label_info_mapping
  }
})

Input

Name Type Required
where cms_label_info_mappingWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Cms_label_info_mapping

// Update one Cms_label_info_mapping
const cms_label_info_mapping = await prisma.cms_label_info_mapping.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_label_info_mappingUpdateInput | cms_label_info_mappingUncheckedUpdateInput Yes
where cms_label_info_mappingWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Cms_label_info_mapping

// Delete a few Cms_label_info_mapping
const { count } = await prisma.cms_label_info_mapping.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_label_info_mappingWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Cms_label_info_mapping

const { count } = await prisma.cms_label_info_mapping.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_label_info_mappingUpdateManyMutationInput | cms_label_info_mappingUncheckedUpdateManyInput Yes
where cms_label_info_mappingWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Cms_label_info_mapping

// Update or create a Cms_label_info_mapping
const cms_label_info_mapping = await prisma.cms_label_info_mapping.upsert({
  create: {
    // ... data to create a Cms_label_info_mapping
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Cms_label_info_mapping we want to update
  }
})

Input

Name Type Required
where cms_label_info_mappingWhereUniqueInput Yes
create cms_label_info_mappingCreateInput | cms_label_info_mappingUncheckedCreateInput Yes
update cms_label_info_mappingUpdateInput | cms_label_info_mappingUncheckedUpdateInput Yes

Output

Required: Yes
List: No

cms_published_setting

Name Value
@@unique
  • resource_id
  • territory
  • published_date
  • unpublished_date
@@index
  • resource_id
  • territory
  • published_date
  • unpublished_date

Fields

Name Type Attributes Required Comment
id BigInt
  • @id
  • @default(autoincrement())
Yes -
resource_id BigInt
  • -
Yes -
territory String
  • @default(TW)
Yes -
published_date DateTime
  • -
Yes -
unpublished_date DateTime
  • -
Yes -
show_start_date DateTime?
  • -
No -
show_end_date DateTime?
  • -
No -
play_start_date DateTime?
  • -
No -
play_end_date DateTime?
  • -
No -
parameter_values Json?
  • -
No -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -
cms_resource cms_resource
  • -
Yes -

Operations

findUnique

Find zero or one Cms_published_setting

// Get one Cms_published_setting
const cms_published_setting = await prisma.cms_published_setting.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_published_settingWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Cms_published_setting

// Get one Cms_published_setting
const cms_published_setting = await prisma.cms_published_setting.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_published_settingWhereInput No
orderBy cms_published_settingOrderByWithRelationInput[] | cms_published_settingOrderByWithRelationInput No
cursor cms_published_settingWhereUniqueInput No
take Int No
skip Int No
distinct Cms_published_settingScalarFieldEnum | Cms_published_settingScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Cms_published_setting

// Get all Cms_published_setting
const Cms_published_setting = await prisma.cms_published_setting.findMany()
// Get first 10 Cms_published_setting
const Cms_published_setting = await prisma.cms_published_setting.findMany({ take: 10 })

Input

Name Type Required
where cms_published_settingWhereInput No
orderBy cms_published_settingOrderByWithRelationInput[] | cms_published_settingOrderByWithRelationInput No
cursor cms_published_settingWhereUniqueInput No
take Int No
skip Int No
distinct Cms_published_settingScalarFieldEnum | Cms_published_settingScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Cms_published_setting

// Create one Cms_published_setting
const Cms_published_setting = await prisma.cms_published_setting.create({
  data: {
    // ... data to create a Cms_published_setting
  }
})

Input

Name Type Required
data cms_published_settingCreateInput | cms_published_settingUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Cms_published_setting

// Delete one Cms_published_setting
const Cms_published_setting = await prisma.cms_published_setting.delete({
  where: {
    // ... filter to delete one Cms_published_setting
  }
})

Input

Name Type Required
where cms_published_settingWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Cms_published_setting

// Update one Cms_published_setting
const cms_published_setting = await prisma.cms_published_setting.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_published_settingUpdateInput | cms_published_settingUncheckedUpdateInput Yes
where cms_published_settingWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Cms_published_setting

// Delete a few Cms_published_setting
const { count } = await prisma.cms_published_setting.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_published_settingWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Cms_published_setting

const { count } = await prisma.cms_published_setting.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_published_settingUpdateManyMutationInput | cms_published_settingUncheckedUpdateManyInput Yes
where cms_published_settingWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Cms_published_setting

// Update or create a Cms_published_setting
const cms_published_setting = await prisma.cms_published_setting.upsert({
  create: {
    // ... data to create a Cms_published_setting
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Cms_published_setting we want to update
  }
})

Input

Name Type Required
where cms_published_settingWhereUniqueInput Yes
create cms_published_settingCreateInput | cms_published_settingUncheckedCreateInput Yes
update cms_published_settingUpdateInput | cms_published_settingUncheckedUpdateInput Yes

Output

Required: Yes
List: No

cms_resource

Name Value
@@unique
  • partner_resource_id
  • channel_code
@@index
  • partner_resource_id
  • channel_code

Fields

Name Type Attributes Required Comment
id BigInt
  • @id
  • @default(autoincrement())
Yes -
key String?
  • @unique
No -
code String?
  • @unique
No -
type String
  • -
Yes -
title Json?
  • -
No -
channel_code String
  • -
Yes -
licensor_id BigInt
  • -
Yes -
company_id String
  • -
Yes -
territory String
  • @default(GLOBAL)
Yes -
default_territory String?
  • -
No -
status String
  • @default(INITIAL)
Yes -
partner_resource_id String?
  • -
No -
published_date DateTime?
  • -
No -
unpublished_date DateTime?
  • -
No -
enable Int
  • @default(1)
Yes -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -
title_en String?
  • -
No -
title_zhtw String?
  • -
No -
title_inid String?
  • -
No -
cms_category_mapping cms_category_mapping[]
  • -
Yes -
cms_hash_tag_mapping cms_hash_tag_mapping[]
  • -
Yes -
cms_published_setting cms_published_setting[]
  • -
Yes -
cms_resource_import_log cms_resource_import_log[]
  • -
Yes -
cms_resource_parameter cms_resource_parameter[]
  • -
Yes -
cms_resource_statistics cms_resource_statistics[]
  • -
Yes -

Operations

findUnique

Find zero or one Cms_resource

// Get one Cms_resource
const cms_resource = await prisma.cms_resource.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_resourceWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Cms_resource

// Get one Cms_resource
const cms_resource = await prisma.cms_resource.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_resourceWhereInput No
orderBy cms_resourceOrderByWithRelationInput[] | cms_resourceOrderByWithRelationInput No
cursor cms_resourceWhereUniqueInput No
take Int No
skip Int No
distinct Cms_resourceScalarFieldEnum | Cms_resourceScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Cms_resource

// Get all Cms_resource
const Cms_resource = await prisma.cms_resource.findMany()
// Get first 10 Cms_resource
const Cms_resource = await prisma.cms_resource.findMany({ take: 10 })

Input

Name Type Required
where cms_resourceWhereInput No
orderBy cms_resourceOrderByWithRelationInput[] | cms_resourceOrderByWithRelationInput No
cursor cms_resourceWhereUniqueInput No
take Int No
skip Int No
distinct Cms_resourceScalarFieldEnum | Cms_resourceScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Cms_resource

// Create one Cms_resource
const Cms_resource = await prisma.cms_resource.create({
  data: {
    // ... data to create a Cms_resource
  }
})

Input

Name Type Required
data cms_resourceCreateInput | cms_resourceUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Cms_resource

// Delete one Cms_resource
const Cms_resource = await prisma.cms_resource.delete({
  where: {
    // ... filter to delete one Cms_resource
  }
})

Input

Name Type Required
where cms_resourceWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Cms_resource

// Update one Cms_resource
const cms_resource = await prisma.cms_resource.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_resourceUpdateInput | cms_resourceUncheckedUpdateInput Yes
where cms_resourceWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Cms_resource

// Delete a few Cms_resource
const { count } = await prisma.cms_resource.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_resourceWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Cms_resource

const { count } = await prisma.cms_resource.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_resourceUpdateManyMutationInput | cms_resourceUncheckedUpdateManyInput Yes
where cms_resourceWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Cms_resource

// Update or create a Cms_resource
const cms_resource = await prisma.cms_resource.upsert({
  create: {
    // ... data to create a Cms_resource
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Cms_resource we want to update
  }
})

Input

Name Type Required
where cms_resourceWhereUniqueInput Yes
create cms_resourceCreateInput | cms_resourceUncheckedCreateInput Yes
update cms_resourceUpdateInput | cms_resourceUncheckedUpdateInput Yes

Output

Required: Yes
List: No

cms_resource_import_log

Fields

Name Type Attributes Required Comment
id BigInt
  • @id
  • @default(autoincrement())
Yes -
partner_resource_id String?
  • -
No -
channel_code String?
  • -
No -
resource_id BigInt?
  • -
No -
execute_process String
  • -
Yes -
execute_status String
  • -
Yes -
imp_result Json?
  • -
No -
poster_import Int
  • @default(0)
Yes -
poster_type String?
  • -
No -
video_import Int
  • @default(0)
Yes -
oa_task_job_id BigInt
  • @default(0)
Yes -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -
cms_resource cms_resource?
  • -
No -

Operations

findUnique

Find zero or one Cms_resource_import_log

// Get one Cms_resource_import_log
const cms_resource_import_log = await prisma.cms_resource_import_log.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_resource_import_logWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Cms_resource_import_log

// Get one Cms_resource_import_log
const cms_resource_import_log = await prisma.cms_resource_import_log.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_resource_import_logWhereInput No
orderBy cms_resource_import_logOrderByWithRelationInput[] | cms_resource_import_logOrderByWithRelationInput No
cursor cms_resource_import_logWhereUniqueInput No
take Int No
skip Int No
distinct Cms_resource_import_logScalarFieldEnum | Cms_resource_import_logScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Cms_resource_import_log

// Get all Cms_resource_import_log
const Cms_resource_import_log = await prisma.cms_resource_import_log.findMany()
// Get first 10 Cms_resource_import_log
const Cms_resource_import_log = await prisma.cms_resource_import_log.findMany({ take: 10 })

Input

Name Type Required
where cms_resource_import_logWhereInput No
orderBy cms_resource_import_logOrderByWithRelationInput[] | cms_resource_import_logOrderByWithRelationInput No
cursor cms_resource_import_logWhereUniqueInput No
take Int No
skip Int No
distinct Cms_resource_import_logScalarFieldEnum | Cms_resource_import_logScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Cms_resource_import_log

// Create one Cms_resource_import_log
const Cms_resource_import_log = await prisma.cms_resource_import_log.create({
  data: {
    // ... data to create a Cms_resource_import_log
  }
})

Input

Name Type Required
data cms_resource_import_logCreateInput | cms_resource_import_logUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Cms_resource_import_log

// Delete one Cms_resource_import_log
const Cms_resource_import_log = await prisma.cms_resource_import_log.delete({
  where: {
    // ... filter to delete one Cms_resource_import_log
  }
})

Input

Name Type Required
where cms_resource_import_logWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Cms_resource_import_log

// Update one Cms_resource_import_log
const cms_resource_import_log = await prisma.cms_resource_import_log.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_resource_import_logUpdateInput | cms_resource_import_logUncheckedUpdateInput Yes
where cms_resource_import_logWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Cms_resource_import_log

// Delete a few Cms_resource_import_log
const { count } = await prisma.cms_resource_import_log.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_resource_import_logWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Cms_resource_import_log

const { count } = await prisma.cms_resource_import_log.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_resource_import_logUpdateManyMutationInput | cms_resource_import_logUncheckedUpdateManyInput Yes
where cms_resource_import_logWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Cms_resource_import_log

// Update or create a Cms_resource_import_log
const cms_resource_import_log = await prisma.cms_resource_import_log.upsert({
  create: {
    // ... data to create a Cms_resource_import_log
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Cms_resource_import_log we want to update
  }
})

Input

Name Type Required
where cms_resource_import_logWhereUniqueInput Yes
create cms_resource_import_logCreateInput | cms_resource_import_logUncheckedCreateInput Yes
update cms_resource_import_logUpdateInput | cms_resource_import_logUncheckedUpdateInput Yes

Output

Required: Yes
List: No

cms_resource_parameter

Name Value
@@id
  • resource_id
  • territory

Fields

Name Type Attributes Required Comment
resource_id BigInt
  • -
Yes -
territory String
  • @default(GLOBAL)
Yes -
master_code String?
  • -
No -
master_key String?
  • -
No -
master_type String?
  • -
No -
video_id String?
  • -
No -
duration String?
  • -
No -
show_direction String?
  • -
No -
sub_statuses Json?
  • -
No -
detail Json?
  • -
No -
description Json?
  • -
No -
player_info Json?
  • -
No -
posters Json?
  • -
No -
category_info Json?
  • -
No -
label_info Json?
  • -
No -
hash_tag_info Json?
  • -
No -
seo_info Json?
  • -
No -
parameter_values Json?
  • -
No -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -
artwork_status String?
  • -
No -
transcoding_status String?
  • -
No -
cms_resource cms_resource
  • -
Yes -

Operations

findUnique

Find zero or one Cms_resource_parameter

// Get one Cms_resource_parameter
const cms_resource_parameter = await prisma.cms_resource_parameter.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_resource_parameterWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Cms_resource_parameter

// Get one Cms_resource_parameter
const cms_resource_parameter = await prisma.cms_resource_parameter.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_resource_parameterWhereInput No
orderBy cms_resource_parameterOrderByWithRelationInput[] | cms_resource_parameterOrderByWithRelationInput No
cursor cms_resource_parameterWhereUniqueInput No
take Int No
skip Int No
distinct Cms_resource_parameterScalarFieldEnum | Cms_resource_parameterScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Cms_resource_parameter

// Get all Cms_resource_parameter
const Cms_resource_parameter = await prisma.cms_resource_parameter.findMany()
// Get first 10 Cms_resource_parameter
const Cms_resource_parameter = await prisma.cms_resource_parameter.findMany({ take: 10 })

Input

Name Type Required
where cms_resource_parameterWhereInput No
orderBy cms_resource_parameterOrderByWithRelationInput[] | cms_resource_parameterOrderByWithRelationInput No
cursor cms_resource_parameterWhereUniqueInput No
take Int No
skip Int No
distinct Cms_resource_parameterScalarFieldEnum | Cms_resource_parameterScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Cms_resource_parameter

// Create one Cms_resource_parameter
const Cms_resource_parameter = await prisma.cms_resource_parameter.create({
  data: {
    // ... data to create a Cms_resource_parameter
  }
})

Input

Name Type Required
data cms_resource_parameterCreateInput | cms_resource_parameterUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Cms_resource_parameter

// Delete one Cms_resource_parameter
const Cms_resource_parameter = await prisma.cms_resource_parameter.delete({
  where: {
    // ... filter to delete one Cms_resource_parameter
  }
})

Input

Name Type Required
where cms_resource_parameterWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Cms_resource_parameter

// Update one Cms_resource_parameter
const cms_resource_parameter = await prisma.cms_resource_parameter.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_resource_parameterUpdateInput | cms_resource_parameterUncheckedUpdateInput Yes
where cms_resource_parameterWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Cms_resource_parameter

// Delete a few Cms_resource_parameter
const { count } = await prisma.cms_resource_parameter.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_resource_parameterWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Cms_resource_parameter

const { count } = await prisma.cms_resource_parameter.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_resource_parameterUpdateManyMutationInput | cms_resource_parameterUncheckedUpdateManyInput Yes
where cms_resource_parameterWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Cms_resource_parameter

// Update or create a Cms_resource_parameter
const cms_resource_parameter = await prisma.cms_resource_parameter.upsert({
  create: {
    // ... data to create a Cms_resource_parameter
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Cms_resource_parameter we want to update
  }
})

Input

Name Type Required
where cms_resource_parameterWhereUniqueInput Yes
create cms_resource_parameterCreateInput | cms_resource_parameterUncheckedCreateInput Yes
update cms_resource_parameterUpdateInput | cms_resource_parameterUncheckedUpdateInput Yes

Output

Required: Yes
List: No

cms_resource_statistics

Name Value
@@id
  • resource_id
  • territory

Fields

Name Type Attributes Required Comment
resource_id BigInt
  • -
Yes -
territory String
  • @default(GLOBAL)
Yes -
statistics Json?
  • -
No -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -
cms_resource cms_resource
  • -
Yes -

Operations

findUnique

Find zero or one Cms_resource_statistics

// Get one Cms_resource_statistics
const cms_resource_statistics = await prisma.cms_resource_statistics.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_resource_statisticsWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Cms_resource_statistics

// Get one Cms_resource_statistics
const cms_resource_statistics = await prisma.cms_resource_statistics.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_resource_statisticsWhereInput No
orderBy cms_resource_statisticsOrderByWithRelationInput[] | cms_resource_statisticsOrderByWithRelationInput No
cursor cms_resource_statisticsWhereUniqueInput No
take Int No
skip Int No
distinct Cms_resource_statisticsScalarFieldEnum | Cms_resource_statisticsScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Cms_resource_statistics

// Get all Cms_resource_statistics
const Cms_resource_statistics = await prisma.cms_resource_statistics.findMany()
// Get first 10 Cms_resource_statistics
const Cms_resource_statistics = await prisma.cms_resource_statistics.findMany({ take: 10 })

Input

Name Type Required
where cms_resource_statisticsWhereInput No
orderBy cms_resource_statisticsOrderByWithRelationInput[] | cms_resource_statisticsOrderByWithRelationInput No
cursor cms_resource_statisticsWhereUniqueInput No
take Int No
skip Int No
distinct Cms_resource_statisticsScalarFieldEnum | Cms_resource_statisticsScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Cms_resource_statistics

// Create one Cms_resource_statistics
const Cms_resource_statistics = await prisma.cms_resource_statistics.create({
  data: {
    // ... data to create a Cms_resource_statistics
  }
})

Input

Name Type Required
data cms_resource_statisticsCreateInput | cms_resource_statisticsUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Cms_resource_statistics

// Delete one Cms_resource_statistics
const Cms_resource_statistics = await prisma.cms_resource_statistics.delete({
  where: {
    // ... filter to delete one Cms_resource_statistics
  }
})

Input

Name Type Required
where cms_resource_statisticsWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Cms_resource_statistics

// Update one Cms_resource_statistics
const cms_resource_statistics = await prisma.cms_resource_statistics.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_resource_statisticsUpdateInput | cms_resource_statisticsUncheckedUpdateInput Yes
where cms_resource_statisticsWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Cms_resource_statistics

// Delete a few Cms_resource_statistics
const { count } = await prisma.cms_resource_statistics.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where cms_resource_statisticsWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Cms_resource_statistics

const { count } = await prisma.cms_resource_statistics.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data cms_resource_statisticsUpdateManyMutationInput | cms_resource_statisticsUncheckedUpdateManyInput Yes
where cms_resource_statisticsWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Cms_resource_statistics

// Update or create a Cms_resource_statistics
const cms_resource_statistics = await prisma.cms_resource_statistics.upsert({
  create: {
    // ... data to create a Cms_resource_statistics
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Cms_resource_statistics we want to update
  }
})

Input

Name Type Required
where cms_resource_statisticsWhereUniqueInput Yes
create cms_resource_statisticsCreateInput | cms_resource_statisticsUncheckedCreateInput Yes
update cms_resource_statisticsUpdateInput | cms_resource_statisticsUncheckedUpdateInput Yes

Output

Required: Yes
List: No

oa_change_logs

Fields

Name Type Attributes Required Comment
id BigInt
  • @id
  • @default(autoincrement())
Yes -
territory String
  • -
Yes -
function_name String
  • -
Yes -
mapping_id String
  • -
Yes -
sub_function_name String?
  • -
No -
sub_mapping_id String?
  • -
No -
comment String
  • -
Yes -
action String
  • -
Yes -
before Json?
  • -
No -
after Json?
  • -
No -
jira_no String?
  • -
No -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one Oa_change_logs

// Get one Oa_change_logs
const oa_change_logs = await prisma.oa_change_logs.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where oa_change_logsWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Oa_change_logs

// Get one Oa_change_logs
const oa_change_logs = await prisma.oa_change_logs.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where oa_change_logsWhereInput No
orderBy oa_change_logsOrderByWithRelationInput[] | oa_change_logsOrderByWithRelationInput No
cursor oa_change_logsWhereUniqueInput No
take Int No
skip Int No
distinct Oa_change_logsScalarFieldEnum | Oa_change_logsScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Oa_change_logs

// Get all Oa_change_logs
const Oa_change_logs = await prisma.oa_change_logs.findMany()
// Get first 10 Oa_change_logs
const Oa_change_logs = await prisma.oa_change_logs.findMany({ take: 10 })

Input

Name Type Required
where oa_change_logsWhereInput No
orderBy oa_change_logsOrderByWithRelationInput[] | oa_change_logsOrderByWithRelationInput No
cursor oa_change_logsWhereUniqueInput No
take Int No
skip Int No
distinct Oa_change_logsScalarFieldEnum | Oa_change_logsScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Oa_change_logs

// Create one Oa_change_logs
const Oa_change_logs = await prisma.oa_change_logs.create({
  data: {
    // ... data to create a Oa_change_logs
  }
})

Input

Name Type Required
data oa_change_logsCreateInput | oa_change_logsUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Oa_change_logs

// Delete one Oa_change_logs
const Oa_change_logs = await prisma.oa_change_logs.delete({
  where: {
    // ... filter to delete one Oa_change_logs
  }
})

Input

Name Type Required
where oa_change_logsWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Oa_change_logs

// Update one Oa_change_logs
const oa_change_logs = await prisma.oa_change_logs.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data oa_change_logsUpdateInput | oa_change_logsUncheckedUpdateInput Yes
where oa_change_logsWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Oa_change_logs

// Delete a few Oa_change_logs
const { count } = await prisma.oa_change_logs.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where oa_change_logsWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Oa_change_logs

const { count } = await prisma.oa_change_logs.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data oa_change_logsUpdateManyMutationInput | oa_change_logsUncheckedUpdateManyInput Yes
where oa_change_logsWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Oa_change_logs

// Update or create a Oa_change_logs
const oa_change_logs = await prisma.oa_change_logs.upsert({
  create: {
    // ... data to create a Oa_change_logs
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Oa_change_logs we want to update
  }
})

Input

Name Type Required
where oa_change_logsWhereUniqueInput Yes
create oa_change_logsCreateInput | oa_change_logsUncheckedCreateInput Yes
update oa_change_logsUpdateInput | oa_change_logsUncheckedUpdateInput Yes

Output

Required: Yes
List: No

oa_licensor

Name Value
@@unique
  • code
  • licensor_key
@@index
  • code
  • licensor_key

Fields

Name Type Attributes Required Comment
id BigInt
  • @id
  • @default(autoincrement())
Yes -
licensor_key String
  • -
Yes -
code String?
  • -
No -
company_name String?
  • -
No -
category String?
  • -
No -
contact_name String?
  • -
No -
contact_phone String?
  • -
No -
contact_email String?
  • -
No -
contact_mobile String?
  • -
No -
s3_bucket_name String?
  • -
No -
enable Boolean?
  • @default(true)
No -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one Oa_licensor

// Get one Oa_licensor
const oa_licensor = await prisma.oa_licensor.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where oa_licensorWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Oa_licensor

// Get one Oa_licensor
const oa_licensor = await prisma.oa_licensor.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where oa_licensorWhereInput No
orderBy oa_licensorOrderByWithRelationInput[] | oa_licensorOrderByWithRelationInput No
cursor oa_licensorWhereUniqueInput No
take Int No
skip Int No
distinct Oa_licensorScalarFieldEnum | Oa_licensorScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Oa_licensor

// Get all Oa_licensor
const Oa_licensor = await prisma.oa_licensor.findMany()
// Get first 10 Oa_licensor
const Oa_licensor = await prisma.oa_licensor.findMany({ take: 10 })

Input

Name Type Required
where oa_licensorWhereInput No
orderBy oa_licensorOrderByWithRelationInput[] | oa_licensorOrderByWithRelationInput No
cursor oa_licensorWhereUniqueInput No
take Int No
skip Int No
distinct Oa_licensorScalarFieldEnum | Oa_licensorScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Oa_licensor

// Create one Oa_licensor
const Oa_licensor = await prisma.oa_licensor.create({
  data: {
    // ... data to create a Oa_licensor
  }
})

Input

Name Type Required
data oa_licensorCreateInput | oa_licensorUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Oa_licensor

// Delete one Oa_licensor
const Oa_licensor = await prisma.oa_licensor.delete({
  where: {
    // ... filter to delete one Oa_licensor
  }
})

Input

Name Type Required
where oa_licensorWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Oa_licensor

// Update one Oa_licensor
const oa_licensor = await prisma.oa_licensor.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data oa_licensorUpdateInput | oa_licensorUncheckedUpdateInput Yes
where oa_licensorWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Oa_licensor

// Delete a few Oa_licensor
const { count } = await prisma.oa_licensor.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where oa_licensorWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Oa_licensor

const { count } = await prisma.oa_licensor.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data oa_licensorUpdateManyMutationInput | oa_licensorUncheckedUpdateManyInput Yes
where oa_licensorWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Oa_licensor

// Update or create a Oa_licensor
const oa_licensor = await prisma.oa_licensor.upsert({
  create: {
    // ... data to create a Oa_licensor
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Oa_licensor we want to update
  }
})

Input

Name Type Required
where oa_licensorWhereUniqueInput Yes
create oa_licensorCreateInput | oa_licensorUncheckedCreateInput Yes
update oa_licensorUpdateInput | oa_licensorUncheckedUpdateInput Yes

Output

Required: Yes
List: No

oa_system_code

Name Value
@@id
  • code_type
  • territory

Fields

Name Type Attributes Required Comment
code_type String
  • -
Yes -
territory String
  • -
Yes -
code_type_name Json?
  • -
No -
show_sequence Int
  • @default(0)
Yes -
used_flag Boolean
  • @default(true)
Yes -
up_level_type String?
  • -
No -
memo String?
  • -
No -
enable Boolean
  • @default(true)
Yes -
created_user String
  • @default(SYSTEM)
Yes -
created_date DateTime
  • @default(now())
Yes -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -
code_type_name_local String?
  • -
No -
code_type_name_eng String?
  • -
No -

Operations

findUnique

Find zero or one Oa_system_code

// Get one Oa_system_code
const oa_system_code = await prisma.oa_system_code.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where oa_system_codeWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Oa_system_code

// Get one Oa_system_code
const oa_system_code = await prisma.oa_system_code.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where oa_system_codeWhereInput No
orderBy oa_system_codeOrderByWithRelationInput[] | oa_system_codeOrderByWithRelationInput No
cursor oa_system_codeWhereUniqueInput No
take Int No
skip Int No
distinct Oa_system_codeScalarFieldEnum | Oa_system_codeScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Oa_system_code

// Get all Oa_system_code
const Oa_system_code = await prisma.oa_system_code.findMany()
// Get first 10 Oa_system_code
const Oa_system_code = await prisma.oa_system_code.findMany({ take: 10 })

Input

Name Type Required
where oa_system_codeWhereInput No
orderBy oa_system_codeOrderByWithRelationInput[] | oa_system_codeOrderByWithRelationInput No
cursor oa_system_codeWhereUniqueInput No
take Int No
skip Int No
distinct Oa_system_codeScalarFieldEnum | Oa_system_codeScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Oa_system_code

// Create one Oa_system_code
const Oa_system_code = await prisma.oa_system_code.create({
  data: {
    // ... data to create a Oa_system_code
  }
})

Input

Name Type Required
data oa_system_codeCreateInput | oa_system_codeUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Oa_system_code

// Delete one Oa_system_code
const Oa_system_code = await prisma.oa_system_code.delete({
  where: {
    // ... filter to delete one Oa_system_code
  }
})

Input

Name Type Required
where oa_system_codeWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Oa_system_code

// Update one Oa_system_code
const oa_system_code = await prisma.oa_system_code.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data oa_system_codeUpdateInput | oa_system_codeUncheckedUpdateInput Yes
where oa_system_codeWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Oa_system_code

// Delete a few Oa_system_code
const { count } = await prisma.oa_system_code.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where oa_system_codeWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Oa_system_code

const { count } = await prisma.oa_system_code.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data oa_system_codeUpdateManyMutationInput | oa_system_codeUncheckedUpdateManyInput Yes
where oa_system_codeWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Oa_system_code

// Update or create a Oa_system_code
const oa_system_code = await prisma.oa_system_code.upsert({
  create: {
    // ... data to create a Oa_system_code
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Oa_system_code we want to update
  }
})

Input

Name Type Required
where oa_system_codeWhereUniqueInput Yes
create oa_system_codeCreateInput | oa_system_codeUncheckedCreateInput Yes
update oa_system_codeUpdateInput | oa_system_codeUncheckedUpdateInput Yes

Output

Required: Yes
List: No

oa_system_code_detail

Fields

Name Type Attributes Required Comment
id BigInt
  • @id
  • @default(autoincrement())
Yes -
code_type String
  • -
Yes -
territory String
  • -
Yes -
code String
  • -
Yes -
code_group String?
  • -
No -
value_type String?
  • -
No -
code_name Json?
  • -
No -
code_parameter Json?
  • -
No -
show_sequence Int
  • @default(0)
Yes -
used_flag Boolean
  • @default(true)
Yes -
up_level_type String?
  • -
No -
memo String?
  • -
No -
enable Boolean
  • @default(true)
Yes -
created_user String
  • @default(SYSTEM)
Yes -
created_date DateTime
  • @default(now())
Yes -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -
code_name_local String?
  • -
No -
code_name_eng String?
  • -
No -

Operations

findUnique

Find zero or one Oa_system_code_detail

// Get one Oa_system_code_detail
const oa_system_code_detail = await prisma.oa_system_code_detail.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where oa_system_code_detailWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Oa_system_code_detail

// Get one Oa_system_code_detail
const oa_system_code_detail = await prisma.oa_system_code_detail.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where oa_system_code_detailWhereInput No
orderBy oa_system_code_detailOrderByWithRelationInput[] | oa_system_code_detailOrderByWithRelationInput No
cursor oa_system_code_detailWhereUniqueInput No
take Int No
skip Int No
distinct Oa_system_code_detailScalarFieldEnum | Oa_system_code_detailScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Oa_system_code_detail

// Get all Oa_system_code_detail
const Oa_system_code_detail = await prisma.oa_system_code_detail.findMany()
// Get first 10 Oa_system_code_detail
const Oa_system_code_detail = await prisma.oa_system_code_detail.findMany({ take: 10 })

Input

Name Type Required
where oa_system_code_detailWhereInput No
orderBy oa_system_code_detailOrderByWithRelationInput[] | oa_system_code_detailOrderByWithRelationInput No
cursor oa_system_code_detailWhereUniqueInput No
take Int No
skip Int No
distinct Oa_system_code_detailScalarFieldEnum | Oa_system_code_detailScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Oa_system_code_detail

// Create one Oa_system_code_detail
const Oa_system_code_detail = await prisma.oa_system_code_detail.create({
  data: {
    // ... data to create a Oa_system_code_detail
  }
})

Input

Name Type Required
data oa_system_code_detailCreateInput | oa_system_code_detailUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Oa_system_code_detail

// Delete one Oa_system_code_detail
const Oa_system_code_detail = await prisma.oa_system_code_detail.delete({
  where: {
    // ... filter to delete one Oa_system_code_detail
  }
})

Input

Name Type Required
where oa_system_code_detailWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Oa_system_code_detail

// Update one Oa_system_code_detail
const oa_system_code_detail = await prisma.oa_system_code_detail.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data oa_system_code_detailUpdateInput | oa_system_code_detailUncheckedUpdateInput Yes
where oa_system_code_detailWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Oa_system_code_detail

// Delete a few Oa_system_code_detail
const { count } = await prisma.oa_system_code_detail.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where oa_system_code_detailWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Oa_system_code_detail

const { count } = await prisma.oa_system_code_detail.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data oa_system_code_detailUpdateManyMutationInput | oa_system_code_detailUncheckedUpdateManyInput Yes
where oa_system_code_detailWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Oa_system_code_detail

// Update or create a Oa_system_code_detail
const oa_system_code_detail = await prisma.oa_system_code_detail.upsert({
  create: {
    // ... data to create a Oa_system_code_detail
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Oa_system_code_detail we want to update
  }
})

Input

Name Type Required
where oa_system_code_detailWhereUniqueInput Yes
create oa_system_code_detailCreateInput | oa_system_code_detailUncheckedCreateInput Yes
update oa_system_code_detailUpdateInput | oa_system_code_detailUncheckedUpdateInput Yes

Output

Required: Yes
List: No

oa_task_job

Fields

Name Type Attributes Required Comment
id BigInt
  • @id
  • @default(autoincrement())
Yes -
task_label String
  • -
Yes -
job_name String
  • -
Yes -
task_name String
  • -
Yes -
task_target String
  • -
Yes -
execution_time DateTime?
  • -
No -
execution_script String?
  • -
No -
execution_log Json?
  • -
No -
executed Int
  • @default(0)
Yes -
exec_start_date DateTime?
  • -
No -
exec_end_date DateTime?
  • -
No -
enable Int
  • @default(1)
Yes -
created_user String
  • -
Yes -
created_date DateTime
  • @default(now())
Yes -
updated_user String
  • -
Yes -
updated_date DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one Oa_task_job

// Get one Oa_task_job
const oa_task_job = await prisma.oa_task_job.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where oa_task_jobWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Oa_task_job

// Get one Oa_task_job
const oa_task_job = await prisma.oa_task_job.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where oa_task_jobWhereInput No
orderBy oa_task_jobOrderByWithRelationInput[] | oa_task_jobOrderByWithRelationInput No
cursor oa_task_jobWhereUniqueInput No
take Int No
skip Int No
distinct Oa_task_jobScalarFieldEnum | Oa_task_jobScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Oa_task_job

// Get all Oa_task_job
const Oa_task_job = await prisma.oa_task_job.findMany()
// Get first 10 Oa_task_job
const Oa_task_job = await prisma.oa_task_job.findMany({ take: 10 })

Input

Name Type Required
where oa_task_jobWhereInput No
orderBy oa_task_jobOrderByWithRelationInput[] | oa_task_jobOrderByWithRelationInput No
cursor oa_task_jobWhereUniqueInput No
take Int No
skip Int No
distinct Oa_task_jobScalarFieldEnum | Oa_task_jobScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Oa_task_job

// Create one Oa_task_job
const Oa_task_job = await prisma.oa_task_job.create({
  data: {
    // ... data to create a Oa_task_job
  }
})

Input

Name Type Required
data oa_task_jobCreateInput | oa_task_jobUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Oa_task_job

// Delete one Oa_task_job
const Oa_task_job = await prisma.oa_task_job.delete({
  where: {
    // ... filter to delete one Oa_task_job
  }
})

Input

Name Type Required
where oa_task_jobWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Oa_task_job

// Update one Oa_task_job
const oa_task_job = await prisma.oa_task_job.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data oa_task_jobUpdateInput | oa_task_jobUncheckedUpdateInput Yes
where oa_task_jobWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Oa_task_job

// Delete a few Oa_task_job
const { count } = await prisma.oa_task_job.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where oa_task_jobWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Oa_task_job

const { count } = await prisma.oa_task_job.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data oa_task_jobUpdateManyMutationInput | oa_task_jobUncheckedUpdateManyInput Yes
where oa_task_jobWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Oa_task_job

// Update or create a Oa_task_job
const oa_task_job = await prisma.oa_task_job.upsert({
  create: {
    // ... data to create a Oa_task_job
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Oa_task_job we want to update
  }
})

Input

Name Type Required
where oa_task_jobWhereUniqueInput Yes
create oa_task_jobCreateInput | oa_task_jobUncheckedCreateInput Yes
update oa_task_jobUpdateInput | oa_task_jobUncheckedUpdateInput Yes

Output

Required: Yes
List: No

oa_territory

Fields

Name Type Attributes Required Comment
id String
  • @id
Yes -
code String
  • @unique
Yes -
title String?
  • -
No -
default_territory String
  • -
Yes -
language String
  • -
Yes -
default_language String
  • -
Yes -
timezone String?
  • @default(+08:00)
No -
priority Int?
  • -
No -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one Oa_territory

// Get one Oa_territory
const oa_territory = await prisma.oa_territory.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where oa_territoryWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Oa_territory

// Get one Oa_territory
const oa_territory = await prisma.oa_territory.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where oa_territoryWhereInput No
orderBy oa_territoryOrderByWithRelationInput[] | oa_territoryOrderByWithRelationInput No
cursor oa_territoryWhereUniqueInput No
take Int No
skip Int No
distinct Oa_territoryScalarFieldEnum | Oa_territoryScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Oa_territory

// Get all Oa_territory
const Oa_territory = await prisma.oa_territory.findMany()
// Get first 10 Oa_territory
const Oa_territory = await prisma.oa_territory.findMany({ take: 10 })

Input

Name Type Required
where oa_territoryWhereInput No
orderBy oa_territoryOrderByWithRelationInput[] | oa_territoryOrderByWithRelationInput No
cursor oa_territoryWhereUniqueInput No
take Int No
skip Int No
distinct Oa_territoryScalarFieldEnum | Oa_territoryScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Oa_territory

// Create one Oa_territory
const Oa_territory = await prisma.oa_territory.create({
  data: {
    // ... data to create a Oa_territory
  }
})

Input

Name Type Required
data oa_territoryCreateInput | oa_territoryUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Oa_territory

// Delete one Oa_territory
const Oa_territory = await prisma.oa_territory.delete({
  where: {
    // ... filter to delete one Oa_territory
  }
})

Input

Name Type Required
where oa_territoryWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Oa_territory

// Update one Oa_territory
const oa_territory = await prisma.oa_territory.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data oa_territoryUpdateInput | oa_territoryUncheckedUpdateInput Yes
where oa_territoryWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Oa_territory

// Delete a few Oa_territory
const { count } = await prisma.oa_territory.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where oa_territoryWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Oa_territory

const { count } = await prisma.oa_territory.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data oa_territoryUpdateManyMutationInput | oa_territoryUncheckedUpdateManyInput Yes
where oa_territoryWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Oa_territory

// Update or create a Oa_territory
const oa_territory = await prisma.oa_territory.upsert({
  create: {
    // ... data to create a Oa_territory
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Oa_territory we want to update
  }
})

Input

Name Type Required
where oa_territoryWhereUniqueInput Yes
create oa_territoryCreateInput | oa_territoryUncheckedCreateInput Yes
update oa_territoryUpdateInput | oa_territoryUncheckedUpdateInput Yes

Output

Required: Yes
List: No

system_function

Fields

Name Type Attributes Required Comment
id String
  • @id
Yes -
menu_id String
  • -
Yes -
name String
  • -
Yes -
show_name String
  • -
Yes -
icon String?
  • -
No -
type String
  • -
Yes -
enable Boolean
  • -
Yes -
created_user String
  • @default(SYSTEM)
Yes -
created_date DateTime
  • @default(now())
Yes -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one System_function

// Get one System_function
const system_function = await prisma.system_function.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where system_functionWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first System_function

// Get one System_function
const system_function = await prisma.system_function.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where system_functionWhereInput No
orderBy system_functionOrderByWithRelationInput[] | system_functionOrderByWithRelationInput No
cursor system_functionWhereUniqueInput No
take Int No
skip Int No
distinct System_functionScalarFieldEnum | System_functionScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more System_function

// Get all System_function
const System_function = await prisma.system_function.findMany()
// Get first 10 System_function
const System_function = await prisma.system_function.findMany({ take: 10 })

Input

Name Type Required
where system_functionWhereInput No
orderBy system_functionOrderByWithRelationInput[] | system_functionOrderByWithRelationInput No
cursor system_functionWhereUniqueInput No
take Int No
skip Int No
distinct System_functionScalarFieldEnum | System_functionScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one System_function

// Create one System_function
const System_function = await prisma.system_function.create({
  data: {
    // ... data to create a System_function
  }
})

Input

Name Type Required
data system_functionCreateInput | system_functionUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one System_function

// Delete one System_function
const System_function = await prisma.system_function.delete({
  where: {
    // ... filter to delete one System_function
  }
})

Input

Name Type Required
where system_functionWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one System_function

// Update one System_function
const system_function = await prisma.system_function.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data system_functionUpdateInput | system_functionUncheckedUpdateInput Yes
where system_functionWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more System_function

// Delete a few System_function
const { count } = await prisma.system_function.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where system_functionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one System_function

const { count } = await prisma.system_function.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data system_functionUpdateManyMutationInput | system_functionUncheckedUpdateManyInput Yes
where system_functionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one System_function

// Update or create a System_function
const system_function = await prisma.system_function.upsert({
  create: {
    // ... data to create a System_function
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the System_function we want to update
  }
})

Input

Name Type Required
where system_functionWhereUniqueInput Yes
create system_functionCreateInput | system_functionUncheckedCreateInput Yes
update system_functionUpdateInput | system_functionUncheckedUpdateInput Yes

Output

Required: Yes
List: No

system_menu

Fields

Name Type Attributes Required Comment
id String
  • @id
Yes -
cascade_id String?
  • -
No -
name String
  • -
Yes -
pathname String
  • -
Yes -
icon String?
  • -
No -
show_in_menu Boolean
  • @default(false)
Yes -
is_web_page Boolean
  • @default(false)
Yes -
is_need_login Boolean
  • @default(false)
Yes -
parent_id String?
  • -
No -
table_memo String?
  • -
No -
sort Int
  • -
Yes -
enable Boolean
  • @default(true)
Yes -
created_user String
  • @default(SYSTEM)
Yes -
created_date DateTime
  • @default(now())
Yes -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one System_menu

// Get one System_menu
const system_menu = await prisma.system_menu.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where system_menuWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first System_menu

// Get one System_menu
const system_menu = await prisma.system_menu.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where system_menuWhereInput No
orderBy system_menuOrderByWithRelationInput[] | system_menuOrderByWithRelationInput No
cursor system_menuWhereUniqueInput No
take Int No
skip Int No
distinct System_menuScalarFieldEnum | System_menuScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more System_menu

// Get all System_menu
const System_menu = await prisma.system_menu.findMany()
// Get first 10 System_menu
const System_menu = await prisma.system_menu.findMany({ take: 10 })

Input

Name Type Required
where system_menuWhereInput No
orderBy system_menuOrderByWithRelationInput[] | system_menuOrderByWithRelationInput No
cursor system_menuWhereUniqueInput No
take Int No
skip Int No
distinct System_menuScalarFieldEnum | System_menuScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one System_menu

// Create one System_menu
const System_menu = await prisma.system_menu.create({
  data: {
    // ... data to create a System_menu
  }
})

Input

Name Type Required
data system_menuCreateInput | system_menuUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one System_menu

// Delete one System_menu
const System_menu = await prisma.system_menu.delete({
  where: {
    // ... filter to delete one System_menu
  }
})

Input

Name Type Required
where system_menuWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one System_menu

// Update one System_menu
const system_menu = await prisma.system_menu.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data system_menuUpdateInput | system_menuUncheckedUpdateInput Yes
where system_menuWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more System_menu

// Delete a few System_menu
const { count } = await prisma.system_menu.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where system_menuWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one System_menu

const { count } = await prisma.system_menu.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data system_menuUpdateManyMutationInput | system_menuUncheckedUpdateManyInput Yes
where system_menuWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one System_menu

// Update or create a System_menu
const system_menu = await prisma.system_menu.upsert({
  create: {
    // ... data to create a System_menu
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the System_menu we want to update
  }
})

Input

Name Type Required
where system_menuWhereUniqueInput Yes
create system_menuCreateInput | system_menuUncheckedCreateInput Yes
update system_menuUpdateInput | system_menuUncheckedUpdateInput Yes

Output

Required: Yes
List: No

system_relevance

Fields

Name Type Attributes Required Comment
id String
  • @id
Yes -
memo String?
  • -
No -
type String
  • -
Yes -
first_id String
  • -
Yes -
second_id String
  • -
Yes -
third_id String?
  • -
No -
enable Boolean
  • -
Yes -
created_user String
  • @default(SYSTEM)
Yes -
created_date DateTime
  • @default(now())
Yes -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one System_relevance

// Get one System_relevance
const system_relevance = await prisma.system_relevance.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where system_relevanceWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first System_relevance

// Get one System_relevance
const system_relevance = await prisma.system_relevance.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where system_relevanceWhereInput No
orderBy system_relevanceOrderByWithRelationInput[] | system_relevanceOrderByWithRelationInput No
cursor system_relevanceWhereUniqueInput No
take Int No
skip Int No
distinct System_relevanceScalarFieldEnum | System_relevanceScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more System_relevance

// Get all System_relevance
const System_relevance = await prisma.system_relevance.findMany()
// Get first 10 System_relevance
const System_relevance = await prisma.system_relevance.findMany({ take: 10 })

Input

Name Type Required
where system_relevanceWhereInput No
orderBy system_relevanceOrderByWithRelationInput[] | system_relevanceOrderByWithRelationInput No
cursor system_relevanceWhereUniqueInput No
take Int No
skip Int No
distinct System_relevanceScalarFieldEnum | System_relevanceScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one System_relevance

// Create one System_relevance
const System_relevance = await prisma.system_relevance.create({
  data: {
    // ... data to create a System_relevance
  }
})

Input

Name Type Required
data system_relevanceCreateInput | system_relevanceUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one System_relevance

// Delete one System_relevance
const System_relevance = await prisma.system_relevance.delete({
  where: {
    // ... filter to delete one System_relevance
  }
})

Input

Name Type Required
where system_relevanceWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one System_relevance

// Update one System_relevance
const system_relevance = await prisma.system_relevance.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data system_relevanceUpdateInput | system_relevanceUncheckedUpdateInput Yes
where system_relevanceWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more System_relevance

// Delete a few System_relevance
const { count } = await prisma.system_relevance.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where system_relevanceWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one System_relevance

const { count } = await prisma.system_relevance.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data system_relevanceUpdateManyMutationInput | system_relevanceUncheckedUpdateManyInput Yes
where system_relevanceWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one System_relevance

// Update or create a System_relevance
const system_relevance = await prisma.system_relevance.upsert({
  create: {
    // ... data to create a System_relevance
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the System_relevance we want to update
  }
})

Input

Name Type Required
where system_relevanceWhereUniqueInput Yes
create system_relevanceCreateInput | system_relevanceUncheckedCreateInput Yes
update system_relevanceUpdateInput | system_relevanceUncheckedUpdateInput Yes

Output

Required: Yes
List: No

system_role

Fields

Name Type Attributes Required Comment
id String
  • @id
Yes -
code String
  • @unique
Yes -
name String
  • -
Yes -
enable Boolean
  • @default(true)
Yes -
created_user String
  • @default(SYSTEM)
Yes -
created_date DateTime
  • @default(now())
Yes -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one System_role

// Get one System_role
const system_role = await prisma.system_role.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where system_roleWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first System_role

// Get one System_role
const system_role = await prisma.system_role.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where system_roleWhereInput No
orderBy system_roleOrderByWithRelationInput[] | system_roleOrderByWithRelationInput No
cursor system_roleWhereUniqueInput No
take Int No
skip Int No
distinct System_roleScalarFieldEnum | System_roleScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more System_role

// Get all System_role
const System_role = await prisma.system_role.findMany()
// Get first 10 System_role
const System_role = await prisma.system_role.findMany({ take: 10 })

Input

Name Type Required
where system_roleWhereInput No
orderBy system_roleOrderByWithRelationInput[] | system_roleOrderByWithRelationInput No
cursor system_roleWhereUniqueInput No
take Int No
skip Int No
distinct System_roleScalarFieldEnum | System_roleScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one System_role

// Create one System_role
const System_role = await prisma.system_role.create({
  data: {
    // ... data to create a System_role
  }
})

Input

Name Type Required
data system_roleCreateInput | system_roleUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one System_role

// Delete one System_role
const System_role = await prisma.system_role.delete({
  where: {
    // ... filter to delete one System_role
  }
})

Input

Name Type Required
where system_roleWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one System_role

// Update one System_role
const system_role = await prisma.system_role.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data system_roleUpdateInput | system_roleUncheckedUpdateInput Yes
where system_roleWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more System_role

// Delete a few System_role
const { count } = await prisma.system_role.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where system_roleWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one System_role

const { count } = await prisma.system_role.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data system_roleUpdateManyMutationInput | system_roleUncheckedUpdateManyInput Yes
where system_roleWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one System_role

// Update or create a System_role
const system_role = await prisma.system_role.upsert({
  create: {
    // ... data to create a System_role
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the System_role we want to update
  }
})

Input

Name Type Required
where system_roleWhereUniqueInput Yes
create system_roleCreateInput | system_roleUncheckedCreateInput Yes
update system_roleUpdateInput | system_roleUncheckedUpdateInput Yes

Output

Required: Yes
List: No

system_user

Fields

Name Type Attributes Required Comment
id String
  • @id
Yes -
provider_id String
  • @unique
Yes -
provider String
  • -
Yes -
display_name String
  • -
Yes -
family_name String
  • -
Yes -
given_name String
  • -
Yes -
email String
  • @unique
Yes -
email_verified Boolean?
  • -
No -
password String
  • -
Yes -
language String
  • -
Yes -
locale String?
  • -
No -
picture String?
  • -
No -
enable Boolean
  • @default(true)
Yes -
created_user String
  • @default(SYSTEM)
Yes -
created_date DateTime
  • @default(now())
Yes -
updated_user String
  • @default(SYSTEM)
Yes -
updated_date DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one System_user

// Get one System_user
const system_user = await prisma.system_user.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where system_userWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first System_user

// Get one System_user
const system_user = await prisma.system_user.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where system_userWhereInput No
orderBy system_userOrderByWithRelationInput[] | system_userOrderByWithRelationInput No
cursor system_userWhereUniqueInput No
take Int No
skip Int No
distinct System_userScalarFieldEnum | System_userScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more System_user

// Get all System_user
const System_user = await prisma.system_user.findMany()
// Get first 10 System_user
const System_user = await prisma.system_user.findMany({ take: 10 })

Input

Name Type Required
where system_userWhereInput No
orderBy system_userOrderByWithRelationInput[] | system_userOrderByWithRelationInput No
cursor system_userWhereUniqueInput No
take Int No
skip Int No
distinct System_userScalarFieldEnum | System_userScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one System_user

// Create one System_user
const System_user = await prisma.system_user.create({
  data: {
    // ... data to create a System_user
  }
})

Input

Name Type Required
data system_userCreateInput | system_userUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one System_user

// Delete one System_user
const System_user = await prisma.system_user.delete({
  where: {
    // ... filter to delete one System_user
  }
})

Input

Name Type Required
where system_userWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one System_user

// Update one System_user
const system_user = await prisma.system_user.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data system_userUpdateInput | system_userUncheckedUpdateInput Yes
where system_userWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more System_user

// Delete a few System_user
const { count } = await prisma.system_user.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where system_userWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one System_user

const { count } = await prisma.system_user.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data system_userUpdateManyMutationInput | system_userUncheckedUpdateManyInput Yes
where system_userWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one System_user

// Update or create a System_user
const system_user = await prisma.system_user.upsert({
  create: {
    // ... data to create a System_user
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the System_user we want to update
  }
})

Input

Name Type Required
where system_userWhereUniqueInput Yes
create system_userCreateInput | system_userUncheckedCreateInput Yes
update system_userUpdateInput | system_userUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Account

Name Value
@@unique
  • provider
  • providerAccountId
@@index
  • provider
  • providerAccountId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
userId String
  • -
Yes -
type String
  • -
Yes -
provider String
  • -
Yes -
providerAccountId String
  • -
Yes -
refresh_token String?
  • -
No -
access_token String?
  • -
No -
expires_at Int?
  • -
No -
token_type String?
  • -
No -
scope String?
  • -
No -
id_token String?
  • -
No -
session_state String?
  • -
No -
user User
  • -
Yes -

Operations

findUnique

Find zero or one Account

// Get one Account
const account = await prisma.account.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AccountWhereUniqueInput Yes

Output

Type: Account
Required: No
List: No

findFirst

Find first Account

// Get one Account
const account = await prisma.account.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AccountWhereInput No
orderBy AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput No
cursor AccountWhereUniqueInput No
take Int No
skip Int No
distinct AccountScalarFieldEnum | AccountScalarFieldEnum[] No

Output

Type: Account
Required: No
List: No

findMany

Find zero or more Account

// Get all Account
const Account = await prisma.account.findMany()
// Get first 10 Account
const Account = await prisma.account.findMany({ take: 10 })

Input

Name Type Required
where AccountWhereInput No
orderBy AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput No
cursor AccountWhereUniqueInput No
take Int No
skip Int No
distinct AccountScalarFieldEnum | AccountScalarFieldEnum[] No

Output

Type: Account
Required: Yes
List: Yes

create

Create one Account

// Create one Account
const Account = await prisma.account.create({
  data: {
    // ... data to create a Account
  }
})

Input

Name Type Required
data AccountCreateInput | AccountUncheckedCreateInput Yes

Output

Type: Account
Required: Yes
List: No

delete

Delete one Account

// Delete one Account
const Account = await prisma.account.delete({
  where: {
    // ... filter to delete one Account
  }
})

Input

Name Type Required
where AccountWhereUniqueInput Yes

Output

Type: Account
Required: No
List: No

update

Update one Account

// Update one Account
const account = await prisma.account.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AccountUpdateInput | AccountUncheckedUpdateInput Yes
where AccountWhereUniqueInput Yes

Output

Type: Account
Required: No
List: No

deleteMany

Delete zero or more Account

// Delete a few Account
const { count } = await prisma.account.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AccountWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Account

const { count } = await prisma.account.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AccountUpdateManyMutationInput | AccountUncheckedUpdateManyInput Yes
where AccountWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Account

// Update or create a Account
const account = await prisma.account.upsert({
  create: {
    // ... data to create a Account
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Account we want to update
  }
})

Input

Name Type Required
where AccountWhereUniqueInput Yes
create AccountCreateInput | AccountUncheckedCreateInput Yes
update AccountUpdateInput | AccountUncheckedUpdateInput Yes

Output

Type: Account
Required: Yes
List: No

Session

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
sessionToken String
  • @unique
Yes -
userId String
  • -
Yes -
expires DateTime
  • -
Yes -
user User
  • -
Yes -

Operations

findUnique

Find zero or one Session

// Get one Session
const session = await prisma.session.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SessionWhereUniqueInput Yes

Output

Type: Session
Required: No
List: No

findFirst

Find first Session

// Get one Session
const session = await prisma.session.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SessionWhereInput No
orderBy SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput No
cursor SessionWhereUniqueInput No
take Int No
skip Int No
distinct SessionScalarFieldEnum | SessionScalarFieldEnum[] No

Output

Type: Session
Required: No
List: No

findMany

Find zero or more Session

// Get all Session
const Session = await prisma.session.findMany()
// Get first 10 Session
const Session = await prisma.session.findMany({ take: 10 })

Input

Name Type Required
where SessionWhereInput No
orderBy SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput No
cursor SessionWhereUniqueInput No
take Int No
skip Int No
distinct SessionScalarFieldEnum | SessionScalarFieldEnum[] No

Output

Type: Session
Required: Yes
List: Yes

create

Create one Session

// Create one Session
const Session = await prisma.session.create({
  data: {
    // ... data to create a Session
  }
})

Input

Name Type Required
data SessionCreateInput | SessionUncheckedCreateInput Yes

Output

Type: Session
Required: Yes
List: No

delete

Delete one Session

// Delete one Session
const Session = await prisma.session.delete({
  where: {
    // ... filter to delete one Session
  }
})

Input

Name Type Required
where SessionWhereUniqueInput Yes

Output

Type: Session
Required: No
List: No

update

Update one Session

// Update one Session
const session = await prisma.session.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SessionUpdateInput | SessionUncheckedUpdateInput Yes
where SessionWhereUniqueInput Yes

Output

Type: Session
Required: No
List: No

deleteMany

Delete zero or more Session

// Delete a few Session
const { count } = await prisma.session.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SessionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Session

const { count } = await prisma.session.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SessionUpdateManyMutationInput | SessionUncheckedUpdateManyInput Yes
where SessionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Session

// Update or create a Session
const session = await prisma.session.upsert({
  create: {
    // ... data to create a Session
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Session we want to update
  }
})

Input

Name Type Required
where SessionWhereUniqueInput Yes
create SessionCreateInput | SessionUncheckedCreateInput Yes
update SessionUpdateInput | SessionUncheckedUpdateInput Yes

Output

Type: Session
Required: Yes
List: No

User

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
name String?
  • -
No -
email String?
  • @unique
No -
emailVerified DateTime?
  • -
No -
image String?
  • -
No -
accounts Account[]
  • -
Yes -
sessions Session[]
  • -
Yes -

Operations

findUnique

Find zero or one User

// Get one User
const user = await prisma.user.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

findFirst

Find first User

// Get one User
const user = await prisma.user.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum | UserScalarFieldEnum[] No

Output

Type: User
Required: No
List: No

findMany

Find zero or more User

// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum | UserScalarFieldEnum[] No

Output

Type: User
Required: Yes
List: Yes

create

Create one User

// Create one User
const User = await prisma.user.create({
  data: {
    // ... data to create a User
  }
})

Input

Name Type Required
data UserCreateInput | UserUncheckedCreateInput No

Output

Type: User
Required: Yes
List: No

delete

Delete one User

// Delete one User
const User = await prisma.user.delete({
  where: {
    // ... filter to delete one User
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

update

Update one User

// Update one User
const user = await prisma.user.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserUpdateInput | UserUncheckedUpdateInput Yes
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

deleteMany

Delete zero or more User

// Delete a few User
const { count } = await prisma.user.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one User

const { count } = await prisma.user.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserUpdateManyMutationInput | UserUncheckedUpdateManyInput Yes
where UserWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one User

// Update or create a User
const user = await prisma.user.upsert({
  create: {
    // ... data to create a User
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the User we want to update
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes
create UserCreateInput | UserUncheckedCreateInput Yes
update UserUpdateInput | UserUncheckedUpdateInput Yes

Output

Type: User
Required: Yes
List: No

VerificationToken

Name Value
@@unique
  • identifier
  • token
@@index
  • identifier
  • token

Fields

Name Type Attributes Required Comment
identifier String
  • -
Yes -
token String
  • @unique
Yes -
expires DateTime
  • -
Yes -

Operations

findUnique

Find zero or one VerificationToken

// Get one VerificationToken
const verificationToken = await prisma.verificationToken.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VerificationTokenWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first VerificationToken

// Get one VerificationToken
const verificationToken = await prisma.verificationToken.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VerificationTokenWhereInput No
orderBy VerificationTokenOrderByWithRelationInput[] | VerificationTokenOrderByWithRelationInput No
cursor VerificationTokenWhereUniqueInput No
take Int No
skip Int No
distinct VerificationTokenScalarFieldEnum | VerificationTokenScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more VerificationToken

// Get all VerificationToken
const VerificationToken = await prisma.verificationToken.findMany()
// Get first 10 VerificationToken
const VerificationToken = await prisma.verificationToken.findMany({ take: 10 })

Input

Name Type Required
where VerificationTokenWhereInput No
orderBy VerificationTokenOrderByWithRelationInput[] | VerificationTokenOrderByWithRelationInput No
cursor VerificationTokenWhereUniqueInput No
take Int No
skip Int No
distinct VerificationTokenScalarFieldEnum | VerificationTokenScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one VerificationToken

// Create one VerificationToken
const VerificationToken = await prisma.verificationToken.create({
  data: {
    // ... data to create a VerificationToken
  }
})

Input

Name Type Required
data VerificationTokenCreateInput | VerificationTokenUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one VerificationToken

// Delete one VerificationToken
const VerificationToken = await prisma.verificationToken.delete({
  where: {
    // ... filter to delete one VerificationToken
  }
})

Input

Name Type Required
where VerificationTokenWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one VerificationToken

// Update one VerificationToken
const verificationToken = await prisma.verificationToken.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data VerificationTokenUpdateInput | VerificationTokenUncheckedUpdateInput Yes
where VerificationTokenWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more VerificationToken

// Delete a few VerificationToken
const { count } = await prisma.verificationToken.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VerificationTokenWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one VerificationToken

const { count } = await prisma.verificationToken.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data VerificationTokenUpdateManyMutationInput | VerificationTokenUncheckedUpdateManyInput Yes
where VerificationTokenWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one VerificationToken

// Update or create a VerificationToken
const verificationToken = await prisma.verificationToken.upsert({
  create: {
    // ... data to create a VerificationToken
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the VerificationToken we want to update
  }
})

Input

Name Type Required
where VerificationTokenWhereUniqueInput Yes
create VerificationTokenCreateInput | VerificationTokenUncheckedCreateInput Yes
update VerificationTokenUpdateInput | VerificationTokenUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Types

Input Types

cms_categoryWhereInput

Name Type Nullable
AND cms_categoryWhereInput | cms_categoryWhereInput[] No
OR cms_categoryWhereInput[] No
NOT cms_categoryWhereInput | cms_categoryWhereInput[] No
id BigIntFilter | BigInt No
territory StringFilter | String No
key StringFilter | String No
code StringFilter | String No
title JsonNullableFilter No
on_used BoolFilter | Boolean No
sequence IntNullableFilter | Int | Null Yes
statistics JsonNullableFilter No
parameter_values JsonNullableFilter No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
cms_category_mapping Cms_category_mappingListRelationFilter No

cms_categoryOrderByWithRelationInput

Name Type Nullable
id SortOrder No
territory SortOrder No
key SortOrder No
code SortOrder No
title SortOrder | SortOrderInput No
on_used SortOrder No
sequence SortOrder | SortOrderInput No
statistics SortOrder | SortOrderInput No
parameter_values SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
cms_category_mapping cms_category_mappingOrderByRelationAggregateInput No

cms_categoryWhereUniqueInput

Name Type Nullable
id BigInt No
territory_key_code cms_categoryTerritoryKeyCodeCompoundUniqueInput No
AND cms_categoryWhereInput | cms_categoryWhereInput[] No
OR cms_categoryWhereInput[] No
NOT cms_categoryWhereInput | cms_categoryWhereInput[] No
territory StringFilter | String No
key StringFilter | String No
code StringFilter | String No
title JsonNullableFilter No
on_used BoolFilter | Boolean No
sequence IntNullableFilter | Int | Null Yes
statistics JsonNullableFilter No
parameter_values JsonNullableFilter No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
cms_category_mapping Cms_category_mappingListRelationFilter No

cms_categoryOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
territory SortOrder No
key SortOrder No
code SortOrder No
title SortOrder | SortOrderInput No
on_used SortOrder No
sequence SortOrder | SortOrderInput No
statistics SortOrder | SortOrderInput No
parameter_values SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
_count cms_categoryCountOrderByAggregateInput No
_avg cms_categoryAvgOrderByAggregateInput No
_max cms_categoryMaxOrderByAggregateInput No
_min cms_categoryMinOrderByAggregateInput No
_sum cms_categorySumOrderByAggregateInput No

cms_categoryScalarWhereWithAggregatesInput

Name Type Nullable
AND cms_categoryScalarWhereWithAggregatesInput | cms_categoryScalarWhereWithAggregatesInput[] No
OR cms_categoryScalarWhereWithAggregatesInput[] No
NOT cms_categoryScalarWhereWithAggregatesInput | cms_categoryScalarWhereWithAggregatesInput[] No
id BigIntWithAggregatesFilter | BigInt No
territory StringWithAggregatesFilter | String No
key StringWithAggregatesFilter | String No
code StringWithAggregatesFilter | String No
title JsonNullableWithAggregatesFilter No
on_used BoolWithAggregatesFilter | Boolean No
sequence IntNullableWithAggregatesFilter | Int | Null Yes
statistics JsonNullableWithAggregatesFilter No
parameter_values JsonNullableWithAggregatesFilter No
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No

cms_category_mappingWhereInput

Name Type Nullable
AND cms_category_mappingWhereInput | cms_category_mappingWhereInput[] No
OR cms_category_mappingWhereInput[] No
NOT cms_category_mappingWhereInput | cms_category_mappingWhereInput[] No
id BigIntFilter | BigInt No
resource_id BigIntFilter | BigInt No
category_id BigIntFilter | BigInt No
parameter_values JsonNullableFilter No
sequence IntNullableFilter | Int | Null Yes
enable BoolNullableFilter | Boolean | Null Yes
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
cms_category Cms_categoryRelationFilter | cms_categoryWhereInput No
cms_resource Cms_resourceRelationFilter | cms_resourceWhereInput No

cms_category_mappingOrderByWithRelationInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
category_id SortOrder No
parameter_values SortOrder | SortOrderInput No
sequence SortOrder | SortOrderInput No
enable SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
cms_category cms_categoryOrderByWithRelationInput No
cms_resource cms_resourceOrderByWithRelationInput No

cms_category_mappingWhereUniqueInput

Name Type Nullable
resource_id_category_id cms_category_mappingResource_idCategory_idCompoundUniqueInput No
id_resource_id cms_category_mappingIdResource_idCompoundUniqueInput No
AND cms_category_mappingWhereInput | cms_category_mappingWhereInput[] No
OR cms_category_mappingWhereInput[] No
NOT cms_category_mappingWhereInput | cms_category_mappingWhereInput[] No
id BigIntFilter | BigInt No
resource_id BigIntFilter | BigInt No
category_id BigIntFilter | BigInt No
parameter_values JsonNullableFilter No
sequence IntNullableFilter | Int | Null Yes
enable BoolNullableFilter | Boolean | Null Yes
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
cms_category Cms_categoryRelationFilter | cms_categoryWhereInput No
cms_resource Cms_resourceRelationFilter | cms_resourceWhereInput No

cms_category_mappingOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
category_id SortOrder No
parameter_values SortOrder | SortOrderInput No
sequence SortOrder | SortOrderInput No
enable SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
_count cms_category_mappingCountOrderByAggregateInput No
_avg cms_category_mappingAvgOrderByAggregateInput No
_max cms_category_mappingMaxOrderByAggregateInput No
_min cms_category_mappingMinOrderByAggregateInput No
_sum cms_category_mappingSumOrderByAggregateInput No


cms_channelWhereInput

Name Type Nullable
AND cms_channelWhereInput | cms_channelWhereInput[] No
OR cms_channelWhereInput[] No
NOT cms_channelWhereInput | cms_channelWhereInput[] No
id BigIntFilter | BigInt No
licensor_id BigIntFilter | BigInt No
code StringFilter | String No
handle StringFilter | String No
title JsonNullableFilter No
image JsonNullableFilter No
description JsonNullableFilter No
statistics JsonNullableFilter No
parameter_values JsonNullableFilter No
seo_info JsonNullableFilter No
territory StringFilter | String No
default_territory StringFilter | String No
created_date DateTimeNullableFilter | DateTime | Null Yes
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
title_en StringNullableFilter | String | Null Yes
title_zhtw StringNullableFilter | String | Null Yes
title_inid StringNullableFilter | String | Null Yes

cms_channelOrderByWithRelationInput

Name Type Nullable
id SortOrder No
licensor_id SortOrder No
code SortOrder No
handle SortOrder No
title SortOrder | SortOrderInput No
image SortOrder | SortOrderInput No
description SortOrder | SortOrderInput No
statistics SortOrder | SortOrderInput No
parameter_values SortOrder | SortOrderInput No
seo_info SortOrder | SortOrderInput No
territory SortOrder No
default_territory SortOrder No
created_date SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
title_en SortOrder | SortOrderInput No
title_zhtw SortOrder | SortOrderInput No
title_inid SortOrder | SortOrderInput No

cms_channelWhereUniqueInput

Name Type Nullable
id BigInt No
code String No
handle String No
AND cms_channelWhereInput | cms_channelWhereInput[] No
OR cms_channelWhereInput[] No
NOT cms_channelWhereInput | cms_channelWhereInput[] No
licensor_id BigIntFilter | BigInt No
title JsonNullableFilter No
image JsonNullableFilter No
description JsonNullableFilter No
statistics JsonNullableFilter No
parameter_values JsonNullableFilter No
seo_info JsonNullableFilter No
territory StringFilter | String No
default_territory StringFilter | String No
created_date DateTimeNullableFilter | DateTime | Null Yes
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
title_en StringNullableFilter | String | Null Yes
title_zhtw StringNullableFilter | String | Null Yes
title_inid StringNullableFilter | String | Null Yes

cms_channelOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
licensor_id SortOrder No
code SortOrder No
handle SortOrder No
title SortOrder | SortOrderInput No
image SortOrder | SortOrderInput No
description SortOrder | SortOrderInput No
statistics SortOrder | SortOrderInput No
parameter_values SortOrder | SortOrderInput No
seo_info SortOrder | SortOrderInput No
territory SortOrder No
default_territory SortOrder No
created_date SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
title_en SortOrder | SortOrderInput No
title_zhtw SortOrder | SortOrderInput No
title_inid SortOrder | SortOrderInput No
_count cms_channelCountOrderByAggregateInput No
_avg cms_channelAvgOrderByAggregateInput No
_max cms_channelMaxOrderByAggregateInput No
_min cms_channelMinOrderByAggregateInput No
_sum cms_channelSumOrderByAggregateInput No

cms_channelScalarWhereWithAggregatesInput

Name Type Nullable
AND cms_channelScalarWhereWithAggregatesInput | cms_channelScalarWhereWithAggregatesInput[] No
OR cms_channelScalarWhereWithAggregatesInput[] No
NOT cms_channelScalarWhereWithAggregatesInput | cms_channelScalarWhereWithAggregatesInput[] No
id BigIntWithAggregatesFilter | BigInt No
licensor_id BigIntWithAggregatesFilter | BigInt No
code StringWithAggregatesFilter | String No
handle StringWithAggregatesFilter | String No
title JsonNullableWithAggregatesFilter No
image JsonNullableWithAggregatesFilter No
description JsonNullableWithAggregatesFilter No
statistics JsonNullableWithAggregatesFilter No
parameter_values JsonNullableWithAggregatesFilter No
seo_info JsonNullableWithAggregatesFilter No
territory StringWithAggregatesFilter | String No
default_territory StringWithAggregatesFilter | String No
created_date DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No
title_en StringNullableWithAggregatesFilter | String | Null Yes
title_zhtw StringNullableWithAggregatesFilter | String | Null Yes
title_inid StringNullableWithAggregatesFilter | String | Null Yes

cms_curationWhereInput

Name Type Nullable
AND cms_curationWhereInput | cms_curationWhereInput[] No
OR cms_curationWhereInput[] No
NOT cms_curationWhereInput | cms_curationWhereInput[] No
id BigIntFilter | BigInt No
key StringNullableFilter | String | Null Yes
code StringNullableFilter | String | Null Yes
title JsonNullableFilter No
company_id StringFilter | String No
territory StringFilter | String No
default_territory StringNullableFilter | String | Null Yes
status StringFilter | String No
detail_parameter JsonNullableFilter No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
title_en StringNullableFilter | String | Null Yes
title_zhtw StringNullableFilter | String | Null Yes
title_inid StringNullableFilter | String | Null Yes
cms_curation_mapping Cms_curation_mappingListRelationFilter No

cms_curationOrderByWithRelationInput

Name Type Nullable
id SortOrder No
key SortOrder | SortOrderInput No
code SortOrder | SortOrderInput No
title SortOrder | SortOrderInput No
company_id SortOrder No
territory SortOrder No
default_territory SortOrder | SortOrderInput No
status SortOrder No
detail_parameter SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
title_en SortOrder | SortOrderInput No
title_zhtw SortOrder | SortOrderInput No
title_inid SortOrder | SortOrderInput No
cms_curation_mapping cms_curation_mappingOrderByRelationAggregateInput No

cms_curationWhereUniqueInput

Name Type Nullable
id BigInt No
key String No
AND cms_curationWhereInput | cms_curationWhereInput[] No
OR cms_curationWhereInput[] No
NOT cms_curationWhereInput | cms_curationWhereInput[] No
code StringNullableFilter | String | Null Yes
title JsonNullableFilter No
company_id StringFilter | String No
territory StringFilter | String No
default_territory StringNullableFilter | String | Null Yes
status StringFilter | String No
detail_parameter JsonNullableFilter No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
title_en StringNullableFilter | String | Null Yes
title_zhtw StringNullableFilter | String | Null Yes
title_inid StringNullableFilter | String | Null Yes
cms_curation_mapping Cms_curation_mappingListRelationFilter No

cms_curationOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
key SortOrder | SortOrderInput No
code SortOrder | SortOrderInput No
title SortOrder | SortOrderInput No
company_id SortOrder No
territory SortOrder No
default_territory SortOrder | SortOrderInput No
status SortOrder No
detail_parameter SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
title_en SortOrder | SortOrderInput No
title_zhtw SortOrder | SortOrderInput No
title_inid SortOrder | SortOrderInput No
_count cms_curationCountOrderByAggregateInput No
_avg cms_curationAvgOrderByAggregateInput No
_max cms_curationMaxOrderByAggregateInput No
_min cms_curationMinOrderByAggregateInput No
_sum cms_curationSumOrderByAggregateInput No

cms_curationScalarWhereWithAggregatesInput

Name Type Nullable
AND cms_curationScalarWhereWithAggregatesInput | cms_curationScalarWhereWithAggregatesInput[] No
OR cms_curationScalarWhereWithAggregatesInput[] No
NOT cms_curationScalarWhereWithAggregatesInput | cms_curationScalarWhereWithAggregatesInput[] No
id BigIntWithAggregatesFilter | BigInt No
key StringNullableWithAggregatesFilter | String | Null Yes
code StringNullableWithAggregatesFilter | String | Null Yes
title JsonNullableWithAggregatesFilter No
company_id StringWithAggregatesFilter | String No
territory StringWithAggregatesFilter | String No
default_territory StringNullableWithAggregatesFilter | String | Null Yes
status StringWithAggregatesFilter | String No
detail_parameter JsonNullableWithAggregatesFilter No
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No
title_en StringNullableWithAggregatesFilter | String | Null Yes
title_zhtw StringNullableWithAggregatesFilter | String | Null Yes
title_inid StringNullableWithAggregatesFilter | String | Null Yes

cms_curation_mappingWhereInput

Name Type Nullable
AND cms_curation_mappingWhereInput | cms_curation_mappingWhereInput[] No
OR cms_curation_mappingWhereInput[] No
NOT cms_curation_mappingWhereInput | cms_curation_mappingWhereInput[] No
id BigIntFilter | BigInt No
resource_id BigIntFilter | BigInt No
curation_id BigIntFilter | BigInt No
edited BoolNullableFilter | Boolean | Null Yes
sequence IntNullableFilter | Int | Null Yes
parameter_values JsonNullableFilter No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
cms_curation Cms_curationRelationFilter | cms_curationWhereInput No

cms_curation_mappingOrderByWithRelationInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
curation_id SortOrder No
edited SortOrder | SortOrderInput No
sequence SortOrder | SortOrderInput No
parameter_values SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
cms_curation cms_curationOrderByWithRelationInput No

cms_curation_mappingWhereUniqueInput

Name Type Nullable
id BigInt No
resource_id_curation_id_edited cms_curation_mappingResource_idCuration_idEditedCompoundUniqueInput No
AND cms_curation_mappingWhereInput | cms_curation_mappingWhereInput[] No
OR cms_curation_mappingWhereInput[] No
NOT cms_curation_mappingWhereInput | cms_curation_mappingWhereInput[] No
resource_id BigIntFilter | BigInt No
curation_id BigIntFilter | BigInt No
edited BoolNullableFilter | Boolean | Null Yes
sequence IntNullableFilter | Int | Null Yes
parameter_values JsonNullableFilter No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
cms_curation Cms_curationRelationFilter | cms_curationWhereInput No

cms_curation_mappingOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
curation_id SortOrder No
edited SortOrder | SortOrderInput No
sequence SortOrder | SortOrderInput No
parameter_values SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
_count cms_curation_mappingCountOrderByAggregateInput No
_avg cms_curation_mappingAvgOrderByAggregateInput No
_max cms_curation_mappingMaxOrderByAggregateInput No
_min cms_curation_mappingMinOrderByAggregateInput No
_sum cms_curation_mappingSumOrderByAggregateInput No


cms_curation_schedulingWhereInput

Name Type Nullable
AND cms_curation_schedulingWhereInput | cms_curation_schedulingWhereInput[] No
OR cms_curation_schedulingWhereInput[] No
NOT cms_curation_schedulingWhereInput | cms_curation_schedulingWhereInput[] No
id BigIntFilter | BigInt No
curation_id BigIntFilter | BigInt No
title JsonNullableFilter No
key StringNullableFilter | String | Null Yes
territory StringNullableFilter | String | Null Yes
description StringFilter | String No
status StringFilter | String No
published_date DateTimeNullableFilter | DateTime | Null Yes
synchronized BoolFilter | Boolean No
enabled BoolFilter | Boolean No
created_user StringFilter | String No
created_date DateTimeFilter | DateTime No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
cms_curation_scheduling_item Cms_curation_scheduling_itemListRelationFilter No

cms_curation_schedulingOrderByWithRelationInput

Name Type Nullable
id SortOrder No
curation_id SortOrder No
title SortOrder | SortOrderInput No
key SortOrder | SortOrderInput No
territory SortOrder | SortOrderInput No
description SortOrder No
status SortOrder No
published_date SortOrder | SortOrderInput No
synchronized SortOrder No
enabled SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
cms_curation_scheduling_item cms_curation_scheduling_itemOrderByRelationAggregateInput No

cms_curation_schedulingWhereUniqueInput

Name Type Nullable
id BigInt No
key_territory_published_date cms_curation_schedulingKeyTerritoryPublished_dateCompoundUniqueInput No
AND cms_curation_schedulingWhereInput | cms_curation_schedulingWhereInput[] No
OR cms_curation_schedulingWhereInput[] No
NOT cms_curation_schedulingWhereInput | cms_curation_schedulingWhereInput[] No
curation_id BigIntFilter | BigInt No
title JsonNullableFilter No
key StringNullableFilter | String | Null Yes
territory StringNullableFilter | String | Null Yes
description StringFilter | String No
status StringFilter | String No
published_date DateTimeNullableFilter | DateTime | Null Yes
synchronized BoolFilter | Boolean No
enabled BoolFilter | Boolean No
created_user StringFilter | String No
created_date DateTimeFilter | DateTime No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
cms_curation_scheduling_item Cms_curation_scheduling_itemListRelationFilter No

cms_curation_schedulingOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
curation_id SortOrder No
title SortOrder | SortOrderInput No
key SortOrder | SortOrderInput No
territory SortOrder | SortOrderInput No
description SortOrder No
status SortOrder No
published_date SortOrder | SortOrderInput No
synchronized SortOrder No
enabled SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
_count cms_curation_schedulingCountOrderByAggregateInput No
_avg cms_curation_schedulingAvgOrderByAggregateInput No
_max cms_curation_schedulingMaxOrderByAggregateInput No
_min cms_curation_schedulingMinOrderByAggregateInput No
_sum cms_curation_schedulingSumOrderByAggregateInput No

cms_curation_schedulingScalarWhereWithAggregatesInput

Name Type Nullable
AND cms_curation_schedulingScalarWhereWithAggregatesInput | cms_curation_schedulingScalarWhereWithAggregatesInput[] No
OR cms_curation_schedulingScalarWhereWithAggregatesInput[] No
NOT cms_curation_schedulingScalarWhereWithAggregatesInput | cms_curation_schedulingScalarWhereWithAggregatesInput[] No
id BigIntWithAggregatesFilter | BigInt No
curation_id BigIntWithAggregatesFilter | BigInt No
title JsonNullableWithAggregatesFilter No
key StringNullableWithAggregatesFilter | String | Null Yes
territory StringNullableWithAggregatesFilter | String | Null Yes
description StringWithAggregatesFilter | String No
status StringWithAggregatesFilter | String No
published_date DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
synchronized BoolWithAggregatesFilter | Boolean No
enabled BoolWithAggregatesFilter | Boolean No
created_user StringWithAggregatesFilter | String No
created_date DateTimeWithAggregatesFilter | DateTime No
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No

cms_curation_scheduling_itemWhereInput

Name Type Nullable
AND cms_curation_scheduling_itemWhereInput | cms_curation_scheduling_itemWhereInput[] No
OR cms_curation_scheduling_itemWhereInput[] No
NOT cms_curation_scheduling_itemWhereInput | cms_curation_scheduling_itemWhereInput[] No
id BigIntFilter | BigInt No
parent_id BigIntFilter | BigInt No
resource_id BigIntFilter | BigInt No
curation_id BigIntFilter | BigInt No
parameter_values JsonNullableFilter No
sequence IntNullableFilter | Int | Null Yes
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
cms_curation_scheduling Cms_curation_schedulingRelationFilter | cms_curation_schedulingWhereInput No

cms_curation_scheduling_itemOrderByWithRelationInput

Name Type Nullable
id SortOrder No
parent_id SortOrder No
resource_id SortOrder No
curation_id SortOrder No
parameter_values SortOrder | SortOrderInput No
sequence SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
cms_curation_scheduling cms_curation_schedulingOrderByWithRelationInput No

cms_curation_scheduling_itemWhereUniqueInput

Name Type Nullable
id BigInt No
parent_id_resource_id_curation_id cms_curation_scheduling_itemParent_idResource_idCuration_idCompoundUniqueInput No
AND cms_curation_scheduling_itemWhereInput | cms_curation_scheduling_itemWhereInput[] No
OR cms_curation_scheduling_itemWhereInput[] No
NOT cms_curation_scheduling_itemWhereInput | cms_curation_scheduling_itemWhereInput[] No
parent_id BigIntFilter | BigInt No
resource_id BigIntFilter | BigInt No
curation_id BigIntFilter | BigInt No
parameter_values JsonNullableFilter No
sequence IntNullableFilter | Int | Null Yes
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
cms_curation_scheduling Cms_curation_schedulingRelationFilter | cms_curation_schedulingWhereInput No

cms_curation_scheduling_itemOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
parent_id SortOrder No
resource_id SortOrder No
curation_id SortOrder No
parameter_values SortOrder | SortOrderInput No
sequence SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
_count cms_curation_scheduling_itemCountOrderByAggregateInput No
_avg cms_curation_scheduling_itemAvgOrderByAggregateInput No
_max cms_curation_scheduling_itemMaxOrderByAggregateInput No
_min cms_curation_scheduling_itemMinOrderByAggregateInput No
_sum cms_curation_scheduling_itemSumOrderByAggregateInput No

cms_curation_scheduling_itemScalarWhereWithAggregatesInput

Name Type Nullable
AND cms_curation_scheduling_itemScalarWhereWithAggregatesInput | cms_curation_scheduling_itemScalarWhereWithAggregatesInput[] No
OR cms_curation_scheduling_itemScalarWhereWithAggregatesInput[] No
NOT cms_curation_scheduling_itemScalarWhereWithAggregatesInput | cms_curation_scheduling_itemScalarWhereWithAggregatesInput[] No
id BigIntWithAggregatesFilter | BigInt No
parent_id BigIntWithAggregatesFilter | BigInt No
resource_id BigIntWithAggregatesFilter | BigInt No
curation_id BigIntWithAggregatesFilter | BigInt No
parameter_values JsonNullableWithAggregatesFilter No
sequence IntNullableWithAggregatesFilter | Int | Null Yes
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No

cms_hash_tagWhereInput

Name Type Nullable
AND cms_hash_tagWhereInput | cms_hash_tagWhereInput[] No
OR cms_hash_tagWhereInput[] No
NOT cms_hash_tagWhereInput | cms_hash_tagWhereInput[] No
id BigIntFilter | BigInt No
title StringFilter | String No
sequence IntNullableFilter | Int | Null Yes
statistics JsonNullableFilter No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
cms_hash_tag_mapping Cms_hash_tag_mappingListRelationFilter No

cms_hash_tagOrderByWithRelationInput

Name Type Nullable
id SortOrder No
title SortOrder No
sequence SortOrder | SortOrderInput No
statistics SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
cms_hash_tag_mapping cms_hash_tag_mappingOrderByRelationAggregateInput No

cms_hash_tagWhereUniqueInput

Name Type Nullable
id BigInt No
title String No
AND cms_hash_tagWhereInput | cms_hash_tagWhereInput[] No
OR cms_hash_tagWhereInput[] No
NOT cms_hash_tagWhereInput | cms_hash_tagWhereInput[] No
sequence IntNullableFilter | Int | Null Yes
statistics JsonNullableFilter No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
cms_hash_tag_mapping Cms_hash_tag_mappingListRelationFilter No

cms_hash_tagOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
title SortOrder No
sequence SortOrder | SortOrderInput No
statistics SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
_count cms_hash_tagCountOrderByAggregateInput No
_avg cms_hash_tagAvgOrderByAggregateInput No
_max cms_hash_tagMaxOrderByAggregateInput No
_min cms_hash_tagMinOrderByAggregateInput No
_sum cms_hash_tagSumOrderByAggregateInput No


cms_hash_tag_mappingWhereInput

Name Type Nullable
AND cms_hash_tag_mappingWhereInput | cms_hash_tag_mappingWhereInput[] No
OR cms_hash_tag_mappingWhereInput[] No
NOT cms_hash_tag_mappingWhereInput | cms_hash_tag_mappingWhereInput[] No
id BigIntFilter | BigInt No
resource_id BigIntFilter | BigInt No
hash_tag_id BigIntFilter | BigInt No
parameter_values JsonNullableFilter No
sequence IntNullableFilter | Int | Null Yes
enable BoolNullableFilter | Boolean | Null Yes
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
cms_hash_tag Cms_hash_tagRelationFilter | cms_hash_tagWhereInput No
cms_resource Cms_resourceRelationFilter | cms_resourceWhereInput No

cms_hash_tag_mappingOrderByWithRelationInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
hash_tag_id SortOrder No
parameter_values SortOrder | SortOrderInput No
sequence SortOrder | SortOrderInput No
enable SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
cms_hash_tag cms_hash_tagOrderByWithRelationInput No
cms_resource cms_resourceOrderByWithRelationInput No

cms_hash_tag_mappingWhereUniqueInput

Name Type Nullable
resource_id_hash_tag_id cms_hash_tag_mappingResource_idHash_tag_idCompoundUniqueInput No
id_resource_id cms_hash_tag_mappingIdResource_idCompoundUniqueInput No
AND cms_hash_tag_mappingWhereInput | cms_hash_tag_mappingWhereInput[] No
OR cms_hash_tag_mappingWhereInput[] No
NOT cms_hash_tag_mappingWhereInput | cms_hash_tag_mappingWhereInput[] No
id BigIntFilter | BigInt No
resource_id BigIntFilter | BigInt No
hash_tag_id BigIntFilter | BigInt No
parameter_values JsonNullableFilter No
sequence IntNullableFilter | Int | Null Yes
enable BoolNullableFilter | Boolean | Null Yes
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
cms_hash_tag Cms_hash_tagRelationFilter | cms_hash_tagWhereInput No
cms_resource Cms_resourceRelationFilter | cms_resourceWhereInput No

cms_hash_tag_mappingOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
hash_tag_id SortOrder No
parameter_values SortOrder | SortOrderInput No
sequence SortOrder | SortOrderInput No
enable SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
_count cms_hash_tag_mappingCountOrderByAggregateInput No
_avg cms_hash_tag_mappingAvgOrderByAggregateInput No
_max cms_hash_tag_mappingMaxOrderByAggregateInput No
_min cms_hash_tag_mappingMinOrderByAggregateInput No
_sum cms_hash_tag_mappingSumOrderByAggregateInput No


cms_label_infoWhereInput

Name Type Nullable
AND cms_label_infoWhereInput | cms_label_infoWhereInput[] No
OR cms_label_infoWhereInput[] No
NOT cms_label_infoWhereInput | cms_label_infoWhereInput[] No
id BigIntFilter | BigInt No
key StringNullableFilter | String | Null Yes
title JsonNullableFilter No
sequence IntNullableFilter | Int | Null Yes
statistics JsonNullableFilter No
parameter_values JsonNullableFilter No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
title_en StringNullableFilter | String | Null Yes
title_zhtw StringNullableFilter | String | Null Yes
title_inid StringNullableFilter | String | Null Yes

cms_label_infoOrderByWithRelationInput

Name Type Nullable
id SortOrder No
key SortOrder | SortOrderInput No
title SortOrder | SortOrderInput No
sequence SortOrder | SortOrderInput No
statistics SortOrder | SortOrderInput No
parameter_values SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
title_en SortOrder | SortOrderInput No
title_zhtw SortOrder | SortOrderInput No
title_inid SortOrder | SortOrderInput No

cms_label_infoWhereUniqueInput

Name Type Nullable
id BigInt No
key String No
AND cms_label_infoWhereInput | cms_label_infoWhereInput[] No
OR cms_label_infoWhereInput[] No
NOT cms_label_infoWhereInput | cms_label_infoWhereInput[] No
title JsonNullableFilter No
sequence IntNullableFilter | Int | Null Yes
statistics JsonNullableFilter No
parameter_values JsonNullableFilter No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
title_en StringNullableFilter | String | Null Yes
title_zhtw StringNullableFilter | String | Null Yes
title_inid StringNullableFilter | String | Null Yes

cms_label_infoOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
key SortOrder | SortOrderInput No
title SortOrder | SortOrderInput No
sequence SortOrder | SortOrderInput No
statistics SortOrder | SortOrderInput No
parameter_values SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
title_en SortOrder | SortOrderInput No
title_zhtw SortOrder | SortOrderInput No
title_inid SortOrder | SortOrderInput No
_count cms_label_infoCountOrderByAggregateInput No
_avg cms_label_infoAvgOrderByAggregateInput No
_max cms_label_infoMaxOrderByAggregateInput No
_min cms_label_infoMinOrderByAggregateInput No
_sum cms_label_infoSumOrderByAggregateInput No

cms_label_infoScalarWhereWithAggregatesInput

Name Type Nullable
AND cms_label_infoScalarWhereWithAggregatesInput | cms_label_infoScalarWhereWithAggregatesInput[] No
OR cms_label_infoScalarWhereWithAggregatesInput[] No
NOT cms_label_infoScalarWhereWithAggregatesInput | cms_label_infoScalarWhereWithAggregatesInput[] No
id BigIntWithAggregatesFilter | BigInt No
key StringNullableWithAggregatesFilter | String | Null Yes
title JsonNullableWithAggregatesFilter No
sequence IntNullableWithAggregatesFilter | Int | Null Yes
statistics JsonNullableWithAggregatesFilter No
parameter_values JsonNullableWithAggregatesFilter No
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No
title_en StringNullableWithAggregatesFilter | String | Null Yes
title_zhtw StringNullableWithAggregatesFilter | String | Null Yes
title_inid StringNullableWithAggregatesFilter | String | Null Yes

cms_label_info_mappingWhereInput

Name Type Nullable
AND cms_label_info_mappingWhereInput | cms_label_info_mappingWhereInput[] No
OR cms_label_info_mappingWhereInput[] No
NOT cms_label_info_mappingWhereInput | cms_label_info_mappingWhereInput[] No
id BigIntFilter | BigInt No
mapping_type StringFilter | String No
detail_mapping_id StringFilter | String No
label_info_id BigIntFilter | BigInt No
parameter_values JsonNullableFilter No
sequence IntNullableFilter | Int | Null Yes
enable BoolNullableFilter | Boolean | Null Yes
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

cms_label_info_mappingOrderByWithRelationInput

Name Type Nullable
id SortOrder No
mapping_type SortOrder No
detail_mapping_id SortOrder No
label_info_id SortOrder No
parameter_values SortOrder | SortOrderInput No
sequence SortOrder | SortOrderInput No
enable SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No

cms_label_info_mappingWhereUniqueInput

Name Type Nullable
id BigInt No
detail_mapping_id_label_info_id cms_label_info_mappingDetail_mapping_idLabel_info_idCompoundUniqueInput No
AND cms_label_info_mappingWhereInput | cms_label_info_mappingWhereInput[] No
OR cms_label_info_mappingWhereInput[] No
NOT cms_label_info_mappingWhereInput | cms_label_info_mappingWhereInput[] No
mapping_type StringFilter | String No
detail_mapping_id StringFilter | String No
label_info_id BigIntFilter | BigInt No
parameter_values JsonNullableFilter No
sequence IntNullableFilter | Int | Null Yes
enable BoolNullableFilter | Boolean | Null Yes
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

cms_label_info_mappingOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
mapping_type SortOrder No
detail_mapping_id SortOrder No
label_info_id SortOrder No
parameter_values SortOrder | SortOrderInput No
sequence SortOrder | SortOrderInput No
enable SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
_count cms_label_info_mappingCountOrderByAggregateInput No
_avg cms_label_info_mappingAvgOrderByAggregateInput No
_max cms_label_info_mappingMaxOrderByAggregateInput No
_min cms_label_info_mappingMinOrderByAggregateInput No
_sum cms_label_info_mappingSumOrderByAggregateInput No

cms_label_info_mappingScalarWhereWithAggregatesInput

Name Type Nullable
AND cms_label_info_mappingScalarWhereWithAggregatesInput | cms_label_info_mappingScalarWhereWithAggregatesInput[] No
OR cms_label_info_mappingScalarWhereWithAggregatesInput[] No
NOT cms_label_info_mappingScalarWhereWithAggregatesInput | cms_label_info_mappingScalarWhereWithAggregatesInput[] No
id BigIntWithAggregatesFilter | BigInt No
mapping_type StringWithAggregatesFilter | String No
detail_mapping_id StringWithAggregatesFilter | String No
label_info_id BigIntWithAggregatesFilter | BigInt No
parameter_values JsonNullableWithAggregatesFilter No
sequence IntNullableWithAggregatesFilter | Int | Null Yes
enable BoolNullableWithAggregatesFilter | Boolean | Null Yes
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No

cms_published_settingWhereInput

Name Type Nullable
AND cms_published_settingWhereInput | cms_published_settingWhereInput[] No
OR cms_published_settingWhereInput[] No
NOT cms_published_settingWhereInput | cms_published_settingWhereInput[] No
id BigIntFilter | BigInt No
resource_id BigIntFilter | BigInt No
territory StringFilter | String No
published_date DateTimeFilter | DateTime No
unpublished_date DateTimeFilter | DateTime No
show_start_date DateTimeNullableFilter | DateTime | Null Yes
show_end_date DateTimeNullableFilter | DateTime | Null Yes
play_start_date DateTimeNullableFilter | DateTime | Null Yes
play_end_date DateTimeNullableFilter | DateTime | Null Yes
parameter_values JsonNullableFilter No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
cms_resource Cms_resourceRelationFilter | cms_resourceWhereInput No

cms_published_settingOrderByWithRelationInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
territory SortOrder No
published_date SortOrder No
unpublished_date SortOrder No
show_start_date SortOrder | SortOrderInput No
show_end_date SortOrder | SortOrderInput No
play_start_date SortOrder | SortOrderInput No
play_end_date SortOrder | SortOrderInput No
parameter_values SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
cms_resource cms_resourceOrderByWithRelationInput No

cms_published_settingWhereUniqueInput

Name Type Nullable
id BigInt No
resource_id_territory_published_date_unpublished_date cms_published_settingResource_idTerritoryPublished_dateUnpublished_dateCompoundUniqueInput No
AND cms_published_settingWhereInput | cms_published_settingWhereInput[] No
OR cms_published_settingWhereInput[] No
NOT cms_published_settingWhereInput | cms_published_settingWhereInput[] No
resource_id BigIntFilter | BigInt No
territory StringFilter | String No
published_date DateTimeFilter | DateTime No
unpublished_date DateTimeFilter | DateTime No
show_start_date DateTimeNullableFilter | DateTime | Null Yes
show_end_date DateTimeNullableFilter | DateTime | Null Yes
play_start_date DateTimeNullableFilter | DateTime | Null Yes
play_end_date DateTimeNullableFilter | DateTime | Null Yes
parameter_values JsonNullableFilter No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
cms_resource Cms_resourceRelationFilter | cms_resourceWhereInput No

cms_published_settingOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
territory SortOrder No
published_date SortOrder No
unpublished_date SortOrder No
show_start_date SortOrder | SortOrderInput No
show_end_date SortOrder | SortOrderInput No
play_start_date SortOrder | SortOrderInput No
play_end_date SortOrder | SortOrderInput No
parameter_values SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
_count cms_published_settingCountOrderByAggregateInput No
_avg cms_published_settingAvgOrderByAggregateInput No
_max cms_published_settingMaxOrderByAggregateInput No
_min cms_published_settingMinOrderByAggregateInput No
_sum cms_published_settingSumOrderByAggregateInput No

cms_published_settingScalarWhereWithAggregatesInput

Name Type Nullable
AND cms_published_settingScalarWhereWithAggregatesInput | cms_published_settingScalarWhereWithAggregatesInput[] No
OR cms_published_settingScalarWhereWithAggregatesInput[] No
NOT cms_published_settingScalarWhereWithAggregatesInput | cms_published_settingScalarWhereWithAggregatesInput[] No
id BigIntWithAggregatesFilter | BigInt No
resource_id BigIntWithAggregatesFilter | BigInt No
territory StringWithAggregatesFilter | String No
published_date DateTimeWithAggregatesFilter | DateTime No
unpublished_date DateTimeWithAggregatesFilter | DateTime No
show_start_date DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
show_end_date DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
play_start_date DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
play_end_date DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
parameter_values JsonNullableWithAggregatesFilter No
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No

cms_resourceWhereInput

Name Type Nullable
AND cms_resourceWhereInput | cms_resourceWhereInput[] No
OR cms_resourceWhereInput[] No
NOT cms_resourceWhereInput | cms_resourceWhereInput[] No
id BigIntFilter | BigInt No
key StringNullableFilter | String | Null Yes
code StringNullableFilter | String | Null Yes
type StringFilter | String No
title JsonNullableFilter No
channel_code StringFilter | String No
licensor_id BigIntFilter | BigInt No
company_id StringFilter | String No
territory StringFilter | String No
default_territory StringNullableFilter | String | Null Yes
status StringFilter | String No
partner_resource_id StringNullableFilter | String | Null Yes
published_date DateTimeNullableFilter | DateTime | Null Yes
unpublished_date DateTimeNullableFilter | DateTime | Null Yes
enable IntFilter | Int No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
title_en StringNullableFilter | String | Null Yes
title_zhtw StringNullableFilter | String | Null Yes
title_inid StringNullableFilter | String | Null Yes
cms_category_mapping Cms_category_mappingListRelationFilter No
cms_hash_tag_mapping Cms_hash_tag_mappingListRelationFilter No
cms_published_setting Cms_published_settingListRelationFilter No
cms_resource_import_log Cms_resource_import_logListRelationFilter No
cms_resource_parameter Cms_resource_parameterListRelationFilter No
cms_resource_statistics Cms_resource_statisticsListRelationFilter No

cms_resourceOrderByWithRelationInput

Name Type Nullable
id SortOrder No
key SortOrder | SortOrderInput No
code SortOrder | SortOrderInput No
type SortOrder No
title SortOrder | SortOrderInput No
channel_code SortOrder No
licensor_id SortOrder No
company_id SortOrder No
territory SortOrder No
default_territory SortOrder | SortOrderInput No
status SortOrder No
partner_resource_id SortOrder | SortOrderInput No
published_date SortOrder | SortOrderInput No
unpublished_date SortOrder | SortOrderInput No
enable SortOrder No
updated_user SortOrder No
updated_date SortOrder No
title_en SortOrder | SortOrderInput No
title_zhtw SortOrder | SortOrderInput No
title_inid SortOrder | SortOrderInput No
cms_category_mapping cms_category_mappingOrderByRelationAggregateInput No
cms_hash_tag_mapping cms_hash_tag_mappingOrderByRelationAggregateInput No
cms_published_setting cms_published_settingOrderByRelationAggregateInput No
cms_resource_import_log cms_resource_import_logOrderByRelationAggregateInput No
cms_resource_parameter cms_resource_parameterOrderByRelationAggregateInput No
cms_resource_statistics cms_resource_statisticsOrderByRelationAggregateInput No

cms_resourceWhereUniqueInput

Name Type Nullable
id BigInt No
key String No
code String No
partner_resource_id_channel_code cms_resourcePartner_resource_idChannel_codeCompoundUniqueInput No
AND cms_resourceWhereInput | cms_resourceWhereInput[] No
OR cms_resourceWhereInput[] No
NOT cms_resourceWhereInput | cms_resourceWhereInput[] No
type StringFilter | String No
title JsonNullableFilter No
channel_code StringFilter | String No
licensor_id BigIntFilter | BigInt No
company_id StringFilter | String No
territory StringFilter | String No
default_territory StringNullableFilter | String | Null Yes
status StringFilter | String No
partner_resource_id StringNullableFilter | String | Null Yes
published_date DateTimeNullableFilter | DateTime | Null Yes
unpublished_date DateTimeNullableFilter | DateTime | Null Yes
enable IntFilter | Int No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
title_en StringNullableFilter | String | Null Yes
title_zhtw StringNullableFilter | String | Null Yes
title_inid StringNullableFilter | String | Null Yes
cms_category_mapping Cms_category_mappingListRelationFilter No
cms_hash_tag_mapping Cms_hash_tag_mappingListRelationFilter No
cms_published_setting Cms_published_settingListRelationFilter No
cms_resource_import_log Cms_resource_import_logListRelationFilter No
cms_resource_parameter Cms_resource_parameterListRelationFilter No
cms_resource_statistics Cms_resource_statisticsListRelationFilter No

cms_resourceOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
key SortOrder | SortOrderInput No
code SortOrder | SortOrderInput No
type SortOrder No
title SortOrder | SortOrderInput No
channel_code SortOrder No
licensor_id SortOrder No
company_id SortOrder No
territory SortOrder No
default_territory SortOrder | SortOrderInput No
status SortOrder No
partner_resource_id SortOrder | SortOrderInput No
published_date SortOrder | SortOrderInput No
unpublished_date SortOrder | SortOrderInput No
enable SortOrder No
updated_user SortOrder No
updated_date SortOrder No
title_en SortOrder | SortOrderInput No
title_zhtw SortOrder | SortOrderInput No
title_inid SortOrder | SortOrderInput No
_count cms_resourceCountOrderByAggregateInput No
_avg cms_resourceAvgOrderByAggregateInput No
_max cms_resourceMaxOrderByAggregateInput No
_min cms_resourceMinOrderByAggregateInput No
_sum cms_resourceSumOrderByAggregateInput No

cms_resourceScalarWhereWithAggregatesInput

Name Type Nullable
AND cms_resourceScalarWhereWithAggregatesInput | cms_resourceScalarWhereWithAggregatesInput[] No
OR cms_resourceScalarWhereWithAggregatesInput[] No
NOT cms_resourceScalarWhereWithAggregatesInput | cms_resourceScalarWhereWithAggregatesInput[] No
id BigIntWithAggregatesFilter | BigInt No
key StringNullableWithAggregatesFilter | String | Null Yes
code StringNullableWithAggregatesFilter | String | Null Yes
type StringWithAggregatesFilter | String No
title JsonNullableWithAggregatesFilter No
channel_code StringWithAggregatesFilter | String No
licensor_id BigIntWithAggregatesFilter | BigInt No
company_id StringWithAggregatesFilter | String No
territory StringWithAggregatesFilter | String No
default_territory StringNullableWithAggregatesFilter | String | Null Yes
status StringWithAggregatesFilter | String No
partner_resource_id StringNullableWithAggregatesFilter | String | Null Yes
published_date DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
unpublished_date DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
enable IntWithAggregatesFilter | Int No
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No
title_en StringNullableWithAggregatesFilter | String | Null Yes
title_zhtw StringNullableWithAggregatesFilter | String | Null Yes
title_inid StringNullableWithAggregatesFilter | String | Null Yes

cms_resource_import_logWhereInput

Name Type Nullable
AND cms_resource_import_logWhereInput | cms_resource_import_logWhereInput[] No
OR cms_resource_import_logWhereInput[] No
NOT cms_resource_import_logWhereInput | cms_resource_import_logWhereInput[] No
id BigIntFilter | BigInt No
partner_resource_id StringNullableFilter | String | Null Yes
channel_code StringNullableFilter | String | Null Yes
resource_id BigIntNullableFilter | BigInt | Null Yes
execute_process StringFilter | String No
execute_status StringFilter | String No
imp_result JsonNullableFilter No
poster_import IntFilter | Int No
poster_type StringNullableFilter | String | Null Yes
video_import IntFilter | Int No
oa_task_job_id BigIntFilter | BigInt No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
cms_resource Cms_resourceNullableRelationFilter | cms_resourceWhereInput | Null Yes

cms_resource_import_logOrderByWithRelationInput

Name Type Nullable
id SortOrder No
partner_resource_id SortOrder | SortOrderInput No
channel_code SortOrder | SortOrderInput No
resource_id SortOrder | SortOrderInput No
execute_process SortOrder No
execute_status SortOrder No
imp_result SortOrder | SortOrderInput No
poster_import SortOrder No
poster_type SortOrder | SortOrderInput No
video_import SortOrder No
oa_task_job_id SortOrder No
updated_user SortOrder No
updated_date SortOrder No
cms_resource cms_resourceOrderByWithRelationInput No

cms_resource_import_logWhereUniqueInput

Name Type Nullable
id BigInt No
AND cms_resource_import_logWhereInput | cms_resource_import_logWhereInput[] No
OR cms_resource_import_logWhereInput[] No
NOT cms_resource_import_logWhereInput | cms_resource_import_logWhereInput[] No
partner_resource_id StringNullableFilter | String | Null Yes
channel_code StringNullableFilter | String | Null Yes
resource_id BigIntNullableFilter | BigInt | Null Yes
execute_process StringFilter | String No
execute_status StringFilter | String No
imp_result JsonNullableFilter No
poster_import IntFilter | Int No
poster_type StringNullableFilter | String | Null Yes
video_import IntFilter | Int No
oa_task_job_id BigIntFilter | BigInt No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
cms_resource Cms_resourceNullableRelationFilter | cms_resourceWhereInput | Null Yes

cms_resource_import_logOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
partner_resource_id SortOrder | SortOrderInput No
channel_code SortOrder | SortOrderInput No
resource_id SortOrder | SortOrderInput No
execute_process SortOrder No
execute_status SortOrder No
imp_result SortOrder | SortOrderInput No
poster_import SortOrder No
poster_type SortOrder | SortOrderInput No
video_import SortOrder No
oa_task_job_id SortOrder No
updated_user SortOrder No
updated_date SortOrder No
_count cms_resource_import_logCountOrderByAggregateInput No
_avg cms_resource_import_logAvgOrderByAggregateInput No
_max cms_resource_import_logMaxOrderByAggregateInput No
_min cms_resource_import_logMinOrderByAggregateInput No
_sum cms_resource_import_logSumOrderByAggregateInput No

cms_resource_import_logScalarWhereWithAggregatesInput

Name Type Nullable
AND cms_resource_import_logScalarWhereWithAggregatesInput | cms_resource_import_logScalarWhereWithAggregatesInput[] No
OR cms_resource_import_logScalarWhereWithAggregatesInput[] No
NOT cms_resource_import_logScalarWhereWithAggregatesInput | cms_resource_import_logScalarWhereWithAggregatesInput[] No
id BigIntWithAggregatesFilter | BigInt No
partner_resource_id StringNullableWithAggregatesFilter | String | Null Yes
channel_code StringNullableWithAggregatesFilter | String | Null Yes
resource_id BigIntNullableWithAggregatesFilter | BigInt | Null Yes
execute_process StringWithAggregatesFilter | String No
execute_status StringWithAggregatesFilter | String No
imp_result JsonNullableWithAggregatesFilter No
poster_import IntWithAggregatesFilter | Int No
poster_type StringNullableWithAggregatesFilter | String | Null Yes
video_import IntWithAggregatesFilter | Int No
oa_task_job_id BigIntWithAggregatesFilter | BigInt No
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No

cms_resource_parameterWhereInput

Name Type Nullable
AND cms_resource_parameterWhereInput | cms_resource_parameterWhereInput[] No
OR cms_resource_parameterWhereInput[] No
NOT cms_resource_parameterWhereInput | cms_resource_parameterWhereInput[] No
resource_id BigIntFilter | BigInt No
territory StringFilter | String No
master_code StringNullableFilter | String | Null Yes
master_key StringNullableFilter | String | Null Yes
master_type StringNullableFilter | String | Null Yes
video_id StringNullableFilter | String | Null Yes
duration StringNullableFilter | String | Null Yes
show_direction StringNullableFilter | String | Null Yes
sub_statuses JsonNullableFilter No
detail JsonNullableFilter No
description JsonNullableFilter No
player_info JsonNullableFilter No
posters JsonNullableFilter No
category_info JsonNullableFilter No
label_info JsonNullableFilter No
hash_tag_info JsonNullableFilter No
seo_info JsonNullableFilter No
parameter_values JsonNullableFilter No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
artwork_status StringNullableFilter | String | Null Yes
transcoding_status StringNullableFilter | String | Null Yes
cms_resource Cms_resourceRelationFilter | cms_resourceWhereInput No

cms_resource_parameterOrderByWithRelationInput

Name Type Nullable
resource_id SortOrder No
territory SortOrder No
master_code SortOrder | SortOrderInput No
master_key SortOrder | SortOrderInput No
master_type SortOrder | SortOrderInput No
video_id SortOrder | SortOrderInput No
duration SortOrder | SortOrderInput No
show_direction SortOrder | SortOrderInput No
sub_statuses SortOrder | SortOrderInput No
detail SortOrder | SortOrderInput No
description SortOrder | SortOrderInput No
player_info SortOrder | SortOrderInput No
posters SortOrder | SortOrderInput No
category_info SortOrder | SortOrderInput No
label_info SortOrder | SortOrderInput No
hash_tag_info SortOrder | SortOrderInput No
seo_info SortOrder | SortOrderInput No
parameter_values SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
artwork_status SortOrder | SortOrderInput No
transcoding_status SortOrder | SortOrderInput No
cms_resource cms_resourceOrderByWithRelationInput No

cms_resource_parameterWhereUniqueInput

Name Type Nullable
resource_id_territory cms_resource_parameterResource_idTerritoryCompoundUniqueInput No
AND cms_resource_parameterWhereInput | cms_resource_parameterWhereInput[] No
OR cms_resource_parameterWhereInput[] No
NOT cms_resource_parameterWhereInput | cms_resource_parameterWhereInput[] No
resource_id BigIntFilter | BigInt No
territory StringFilter | String No
master_code StringNullableFilter | String | Null Yes
master_key StringNullableFilter | String | Null Yes
master_type StringNullableFilter | String | Null Yes
video_id StringNullableFilter | String | Null Yes
duration StringNullableFilter | String | Null Yes
show_direction StringNullableFilter | String | Null Yes
sub_statuses JsonNullableFilter No
detail JsonNullableFilter No
description JsonNullableFilter No
player_info JsonNullableFilter No
posters JsonNullableFilter No
category_info JsonNullableFilter No
label_info JsonNullableFilter No
hash_tag_info JsonNullableFilter No
seo_info JsonNullableFilter No
parameter_values JsonNullableFilter No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
artwork_status StringNullableFilter | String | Null Yes
transcoding_status StringNullableFilter | String | Null Yes
cms_resource Cms_resourceRelationFilter | cms_resourceWhereInput No

cms_resource_parameterOrderByWithAggregationInput

Name Type Nullable
resource_id SortOrder No
territory SortOrder No
master_code SortOrder | SortOrderInput No
master_key SortOrder | SortOrderInput No
master_type SortOrder | SortOrderInput No
video_id SortOrder | SortOrderInput No
duration SortOrder | SortOrderInput No
show_direction SortOrder | SortOrderInput No
sub_statuses SortOrder | SortOrderInput No
detail SortOrder | SortOrderInput No
description SortOrder | SortOrderInput No
player_info SortOrder | SortOrderInput No
posters SortOrder | SortOrderInput No
category_info SortOrder | SortOrderInput No
label_info SortOrder | SortOrderInput No
hash_tag_info SortOrder | SortOrderInput No
seo_info SortOrder | SortOrderInput No
parameter_values SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
artwork_status SortOrder | SortOrderInput No
transcoding_status SortOrder | SortOrderInput No
_count cms_resource_parameterCountOrderByAggregateInput No
_avg cms_resource_parameterAvgOrderByAggregateInput No
_max cms_resource_parameterMaxOrderByAggregateInput No
_min cms_resource_parameterMinOrderByAggregateInput No
_sum cms_resource_parameterSumOrderByAggregateInput No

cms_resource_parameterScalarWhereWithAggregatesInput

Name Type Nullable
AND cms_resource_parameterScalarWhereWithAggregatesInput | cms_resource_parameterScalarWhereWithAggregatesInput[] No
OR cms_resource_parameterScalarWhereWithAggregatesInput[] No
NOT cms_resource_parameterScalarWhereWithAggregatesInput | cms_resource_parameterScalarWhereWithAggregatesInput[] No
resource_id BigIntWithAggregatesFilter | BigInt No
territory StringWithAggregatesFilter | String No
master_code StringNullableWithAggregatesFilter | String | Null Yes
master_key StringNullableWithAggregatesFilter | String | Null Yes
master_type StringNullableWithAggregatesFilter | String | Null Yes
video_id StringNullableWithAggregatesFilter | String | Null Yes
duration StringNullableWithAggregatesFilter | String | Null Yes
show_direction StringNullableWithAggregatesFilter | String | Null Yes
sub_statuses JsonNullableWithAggregatesFilter No
detail JsonNullableWithAggregatesFilter No
description JsonNullableWithAggregatesFilter No
player_info JsonNullableWithAggregatesFilter No
posters JsonNullableWithAggregatesFilter No
category_info JsonNullableWithAggregatesFilter No
label_info JsonNullableWithAggregatesFilter No
hash_tag_info JsonNullableWithAggregatesFilter No
seo_info JsonNullableWithAggregatesFilter No
parameter_values JsonNullableWithAggregatesFilter No
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No
artwork_status StringNullableWithAggregatesFilter | String | Null Yes
transcoding_status StringNullableWithAggregatesFilter | String | Null Yes

cms_resource_statisticsWhereInput

Name Type Nullable
AND cms_resource_statisticsWhereInput | cms_resource_statisticsWhereInput[] No
OR cms_resource_statisticsWhereInput[] No
NOT cms_resource_statisticsWhereInput | cms_resource_statisticsWhereInput[] No
resource_id BigIntFilter | BigInt No
territory StringFilter | String No
statistics JsonNullableFilter No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
cms_resource Cms_resourceRelationFilter | cms_resourceWhereInput No

cms_resource_statisticsOrderByWithRelationInput

Name Type Nullable
resource_id SortOrder No
territory SortOrder No
statistics SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
cms_resource cms_resourceOrderByWithRelationInput No

cms_resource_statisticsWhereUniqueInput

Name Type Nullable
resource_id_territory cms_resource_statisticsResource_idTerritoryCompoundUniqueInput No
AND cms_resource_statisticsWhereInput | cms_resource_statisticsWhereInput[] No
OR cms_resource_statisticsWhereInput[] No
NOT cms_resource_statisticsWhereInput | cms_resource_statisticsWhereInput[] No
resource_id BigIntFilter | BigInt No
territory StringFilter | String No
statistics JsonNullableFilter No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
cms_resource Cms_resourceRelationFilter | cms_resourceWhereInput No

cms_resource_statisticsOrderByWithAggregationInput

Name Type Nullable
resource_id SortOrder No
territory SortOrder No
statistics SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
_count cms_resource_statisticsCountOrderByAggregateInput No
_avg cms_resource_statisticsAvgOrderByAggregateInput No
_max cms_resource_statisticsMaxOrderByAggregateInput No
_min cms_resource_statisticsMinOrderByAggregateInput No
_sum cms_resource_statisticsSumOrderByAggregateInput No


oa_change_logsWhereInput

Name Type Nullable
AND oa_change_logsWhereInput | oa_change_logsWhereInput[] No
OR oa_change_logsWhereInput[] No
NOT oa_change_logsWhereInput | oa_change_logsWhereInput[] No
id BigIntFilter | BigInt No
territory StringFilter | String No
function_name StringFilter | String No
mapping_id StringFilter | String No
sub_function_name StringNullableFilter | String | Null Yes
sub_mapping_id StringNullableFilter | String | Null Yes
comment StringFilter | String No
action StringFilter | String No
before JsonNullableFilter No
after JsonNullableFilter No
jira_no StringNullableFilter | String | Null Yes
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

oa_change_logsOrderByWithRelationInput

Name Type Nullable
id SortOrder No
territory SortOrder No
function_name SortOrder No
mapping_id SortOrder No
sub_function_name SortOrder | SortOrderInput No
sub_mapping_id SortOrder | SortOrderInput No
comment SortOrder No
action SortOrder No
before SortOrder | SortOrderInput No
after SortOrder | SortOrderInput No
jira_no SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No

oa_change_logsWhereUniqueInput

Name Type Nullable
id BigInt No
AND oa_change_logsWhereInput | oa_change_logsWhereInput[] No
OR oa_change_logsWhereInput[] No
NOT oa_change_logsWhereInput | oa_change_logsWhereInput[] No
territory StringFilter | String No
function_name StringFilter | String No
mapping_id StringFilter | String No
sub_function_name StringNullableFilter | String | Null Yes
sub_mapping_id StringNullableFilter | String | Null Yes
comment StringFilter | String No
action StringFilter | String No
before JsonNullableFilter No
after JsonNullableFilter No
jira_no StringNullableFilter | String | Null Yes
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

oa_change_logsOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
territory SortOrder No
function_name SortOrder No
mapping_id SortOrder No
sub_function_name SortOrder | SortOrderInput No
sub_mapping_id SortOrder | SortOrderInput No
comment SortOrder No
action SortOrder No
before SortOrder | SortOrderInput No
after SortOrder | SortOrderInput No
jira_no SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
_count oa_change_logsCountOrderByAggregateInput No
_avg oa_change_logsAvgOrderByAggregateInput No
_max oa_change_logsMaxOrderByAggregateInput No
_min oa_change_logsMinOrderByAggregateInput No
_sum oa_change_logsSumOrderByAggregateInput No

oa_change_logsScalarWhereWithAggregatesInput

Name Type Nullable
AND oa_change_logsScalarWhereWithAggregatesInput | oa_change_logsScalarWhereWithAggregatesInput[] No
OR oa_change_logsScalarWhereWithAggregatesInput[] No
NOT oa_change_logsScalarWhereWithAggregatesInput | oa_change_logsScalarWhereWithAggregatesInput[] No
id BigIntWithAggregatesFilter | BigInt No
territory StringWithAggregatesFilter | String No
function_name StringWithAggregatesFilter | String No
mapping_id StringWithAggregatesFilter | String No
sub_function_name StringNullableWithAggregatesFilter | String | Null Yes
sub_mapping_id StringNullableWithAggregatesFilter | String | Null Yes
comment StringWithAggregatesFilter | String No
action StringWithAggregatesFilter | String No
before JsonNullableWithAggregatesFilter No
after JsonNullableWithAggregatesFilter No
jira_no StringNullableWithAggregatesFilter | String | Null Yes
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No

oa_licensorWhereInput

Name Type Nullable
AND oa_licensorWhereInput | oa_licensorWhereInput[] No
OR oa_licensorWhereInput[] No
NOT oa_licensorWhereInput | oa_licensorWhereInput[] No
id BigIntFilter | BigInt No
licensor_key StringFilter | String No
code StringNullableFilter | String | Null Yes
company_name StringNullableFilter | String | Null Yes
category StringNullableFilter | String | Null Yes
contact_name StringNullableFilter | String | Null Yes
contact_phone StringNullableFilter | String | Null Yes
contact_email StringNullableFilter | String | Null Yes
contact_mobile StringNullableFilter | String | Null Yes
s3_bucket_name StringNullableFilter | String | Null Yes
enable BoolNullableFilter | Boolean | Null Yes
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

oa_licensorOrderByWithRelationInput

Name Type Nullable
id SortOrder No
licensor_key SortOrder No
code SortOrder | SortOrderInput No
company_name SortOrder | SortOrderInput No
category SortOrder | SortOrderInput No
contact_name SortOrder | SortOrderInput No
contact_phone SortOrder | SortOrderInput No
contact_email SortOrder | SortOrderInput No
contact_mobile SortOrder | SortOrderInput No
s3_bucket_name SortOrder | SortOrderInput No
enable SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No

oa_licensorWhereUniqueInput

Name Type Nullable
id BigInt No
code_licensor_key oa_licensorCodeLicensor_keyCompoundUniqueInput No
AND oa_licensorWhereInput | oa_licensorWhereInput[] No
OR oa_licensorWhereInput[] No
NOT oa_licensorWhereInput | oa_licensorWhereInput[] No
licensor_key StringFilter | String No
code StringNullableFilter | String | Null Yes
company_name StringNullableFilter | String | Null Yes
category StringNullableFilter | String | Null Yes
contact_name StringNullableFilter | String | Null Yes
contact_phone StringNullableFilter | String | Null Yes
contact_email StringNullableFilter | String | Null Yes
contact_mobile StringNullableFilter | String | Null Yes
s3_bucket_name StringNullableFilter | String | Null Yes
enable BoolNullableFilter | Boolean | Null Yes
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

oa_licensorOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
licensor_key SortOrder No
code SortOrder | SortOrderInput No
company_name SortOrder | SortOrderInput No
category SortOrder | SortOrderInput No
contact_name SortOrder | SortOrderInput No
contact_phone SortOrder | SortOrderInput No
contact_email SortOrder | SortOrderInput No
contact_mobile SortOrder | SortOrderInput No
s3_bucket_name SortOrder | SortOrderInput No
enable SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
_count oa_licensorCountOrderByAggregateInput No
_avg oa_licensorAvgOrderByAggregateInput No
_max oa_licensorMaxOrderByAggregateInput No
_min oa_licensorMinOrderByAggregateInput No
_sum oa_licensorSumOrderByAggregateInput No

oa_licensorScalarWhereWithAggregatesInput

Name Type Nullable
AND oa_licensorScalarWhereWithAggregatesInput | oa_licensorScalarWhereWithAggregatesInput[] No
OR oa_licensorScalarWhereWithAggregatesInput[] No
NOT oa_licensorScalarWhereWithAggregatesInput | oa_licensorScalarWhereWithAggregatesInput[] No
id BigIntWithAggregatesFilter | BigInt No
licensor_key StringWithAggregatesFilter | String No
code StringNullableWithAggregatesFilter | String | Null Yes
company_name StringNullableWithAggregatesFilter | String | Null Yes
category StringNullableWithAggregatesFilter | String | Null Yes
contact_name StringNullableWithAggregatesFilter | String | Null Yes
contact_phone StringNullableWithAggregatesFilter | String | Null Yes
contact_email StringNullableWithAggregatesFilter | String | Null Yes
contact_mobile StringNullableWithAggregatesFilter | String | Null Yes
s3_bucket_name StringNullableWithAggregatesFilter | String | Null Yes
enable BoolNullableWithAggregatesFilter | Boolean | Null Yes
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No

oa_system_codeWhereInput

Name Type Nullable
AND oa_system_codeWhereInput | oa_system_codeWhereInput[] No
OR oa_system_codeWhereInput[] No
NOT oa_system_codeWhereInput | oa_system_codeWhereInput[] No
code_type StringFilter | String No
territory StringFilter | String No
code_type_name JsonNullableFilter No
show_sequence IntFilter | Int No
used_flag BoolFilter | Boolean No
up_level_type StringNullableFilter | String | Null Yes
memo StringNullableFilter | String | Null Yes
enable BoolFilter | Boolean No
created_user StringFilter | String No
created_date DateTimeFilter | DateTime No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
code_type_name_local StringNullableFilter | String | Null Yes
code_type_name_eng StringNullableFilter | String | Null Yes

oa_system_codeOrderByWithRelationInput

Name Type Nullable
code_type SortOrder No
territory SortOrder No
code_type_name SortOrder | SortOrderInput No
show_sequence SortOrder No
used_flag SortOrder No
up_level_type SortOrder | SortOrderInput No
memo SortOrder | SortOrderInput No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
code_type_name_local SortOrder | SortOrderInput No
code_type_name_eng SortOrder | SortOrderInput No

oa_system_codeWhereUniqueInput

Name Type Nullable
code_type_territory oa_system_codeCode_typeTerritoryCompoundUniqueInput No
AND oa_system_codeWhereInput | oa_system_codeWhereInput[] No
OR oa_system_codeWhereInput[] No
NOT oa_system_codeWhereInput | oa_system_codeWhereInput[] No
code_type StringFilter | String No
territory StringFilter | String No
code_type_name JsonNullableFilter No
show_sequence IntFilter | Int No
used_flag BoolFilter | Boolean No
up_level_type StringNullableFilter | String | Null Yes
memo StringNullableFilter | String | Null Yes
enable BoolFilter | Boolean No
created_user StringFilter | String No
created_date DateTimeFilter | DateTime No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
code_type_name_local StringNullableFilter | String | Null Yes
code_type_name_eng StringNullableFilter | String | Null Yes

oa_system_codeOrderByWithAggregationInput

Name Type Nullable
code_type SortOrder No
territory SortOrder No
code_type_name SortOrder | SortOrderInput No
show_sequence SortOrder No
used_flag SortOrder No
up_level_type SortOrder | SortOrderInput No
memo SortOrder | SortOrderInput No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
code_type_name_local SortOrder | SortOrderInput No
code_type_name_eng SortOrder | SortOrderInput No
_count oa_system_codeCountOrderByAggregateInput No
_avg oa_system_codeAvgOrderByAggregateInput No
_max oa_system_codeMaxOrderByAggregateInput No
_min oa_system_codeMinOrderByAggregateInput No
_sum oa_system_codeSumOrderByAggregateInput No

oa_system_codeScalarWhereWithAggregatesInput

Name Type Nullable
AND oa_system_codeScalarWhereWithAggregatesInput | oa_system_codeScalarWhereWithAggregatesInput[] No
OR oa_system_codeScalarWhereWithAggregatesInput[] No
NOT oa_system_codeScalarWhereWithAggregatesInput | oa_system_codeScalarWhereWithAggregatesInput[] No
code_type StringWithAggregatesFilter | String No
territory StringWithAggregatesFilter | String No
code_type_name JsonNullableWithAggregatesFilter No
show_sequence IntWithAggregatesFilter | Int No
used_flag BoolWithAggregatesFilter | Boolean No
up_level_type StringNullableWithAggregatesFilter | String | Null Yes
memo StringNullableWithAggregatesFilter | String | Null Yes
enable BoolWithAggregatesFilter | Boolean No
created_user StringWithAggregatesFilter | String No
created_date DateTimeWithAggregatesFilter | DateTime No
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No
code_type_name_local StringNullableWithAggregatesFilter | String | Null Yes
code_type_name_eng StringNullableWithAggregatesFilter | String | Null Yes

oa_system_code_detailWhereInput

Name Type Nullable
AND oa_system_code_detailWhereInput | oa_system_code_detailWhereInput[] No
OR oa_system_code_detailWhereInput[] No
NOT oa_system_code_detailWhereInput | oa_system_code_detailWhereInput[] No
id BigIntFilter | BigInt No
code_type StringFilter | String No
territory StringFilter | String No
code StringFilter | String No
code_group StringNullableFilter | String | Null Yes
value_type StringNullableFilter | String | Null Yes
code_name JsonNullableFilter No
code_parameter JsonNullableFilter No
show_sequence IntFilter | Int No
used_flag BoolFilter | Boolean No
up_level_type StringNullableFilter | String | Null Yes
memo StringNullableFilter | String | Null Yes
enable BoolFilter | Boolean No
created_user StringFilter | String No
created_date DateTimeFilter | DateTime No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
code_name_local StringNullableFilter | String | Null Yes
code_name_eng StringNullableFilter | String | Null Yes

oa_system_code_detailOrderByWithRelationInput

Name Type Nullable
id SortOrder No
code_type SortOrder No
territory SortOrder No
code SortOrder No
code_group SortOrder | SortOrderInput No
value_type SortOrder | SortOrderInput No
code_name SortOrder | SortOrderInput No
code_parameter SortOrder | SortOrderInput No
show_sequence SortOrder No
used_flag SortOrder No
up_level_type SortOrder | SortOrderInput No
memo SortOrder | SortOrderInput No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
code_name_local SortOrder | SortOrderInput No
code_name_eng SortOrder | SortOrderInput No

oa_system_code_detailWhereUniqueInput

Name Type Nullable
id BigInt No
AND oa_system_code_detailWhereInput | oa_system_code_detailWhereInput[] No
OR oa_system_code_detailWhereInput[] No
NOT oa_system_code_detailWhereInput | oa_system_code_detailWhereInput[] No
code_type StringFilter | String No
territory StringFilter | String No
code StringFilter | String No
code_group StringNullableFilter | String | Null Yes
value_type StringNullableFilter | String | Null Yes
code_name JsonNullableFilter No
code_parameter JsonNullableFilter No
show_sequence IntFilter | Int No
used_flag BoolFilter | Boolean No
up_level_type StringNullableFilter | String | Null Yes
memo StringNullableFilter | String | Null Yes
enable BoolFilter | Boolean No
created_user StringFilter | String No
created_date DateTimeFilter | DateTime No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
code_name_local StringNullableFilter | String | Null Yes
code_name_eng StringNullableFilter | String | Null Yes

oa_system_code_detailOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
code_type SortOrder No
territory SortOrder No
code SortOrder No
code_group SortOrder | SortOrderInput No
value_type SortOrder | SortOrderInput No
code_name SortOrder | SortOrderInput No
code_parameter SortOrder | SortOrderInput No
show_sequence SortOrder No
used_flag SortOrder No
up_level_type SortOrder | SortOrderInput No
memo SortOrder | SortOrderInput No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
code_name_local SortOrder | SortOrderInput No
code_name_eng SortOrder | SortOrderInput No
_count oa_system_code_detailCountOrderByAggregateInput No
_avg oa_system_code_detailAvgOrderByAggregateInput No
_max oa_system_code_detailMaxOrderByAggregateInput No
_min oa_system_code_detailMinOrderByAggregateInput No
_sum oa_system_code_detailSumOrderByAggregateInput No

oa_system_code_detailScalarWhereWithAggregatesInput

Name Type Nullable
AND oa_system_code_detailScalarWhereWithAggregatesInput | oa_system_code_detailScalarWhereWithAggregatesInput[] No
OR oa_system_code_detailScalarWhereWithAggregatesInput[] No
NOT oa_system_code_detailScalarWhereWithAggregatesInput | oa_system_code_detailScalarWhereWithAggregatesInput[] No
id BigIntWithAggregatesFilter | BigInt No
code_type StringWithAggregatesFilter | String No
territory StringWithAggregatesFilter | String No
code StringWithAggregatesFilter | String No
code_group StringNullableWithAggregatesFilter | String | Null Yes
value_type StringNullableWithAggregatesFilter | String | Null Yes
code_name JsonNullableWithAggregatesFilter No
code_parameter JsonNullableWithAggregatesFilter No
show_sequence IntWithAggregatesFilter | Int No
used_flag BoolWithAggregatesFilter | Boolean No
up_level_type StringNullableWithAggregatesFilter | String | Null Yes
memo StringNullableWithAggregatesFilter | String | Null Yes
enable BoolWithAggregatesFilter | Boolean No
created_user StringWithAggregatesFilter | String No
created_date DateTimeWithAggregatesFilter | DateTime No
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No
code_name_local StringNullableWithAggregatesFilter | String | Null Yes
code_name_eng StringNullableWithAggregatesFilter | String | Null Yes

oa_task_jobWhereInput

Name Type Nullable
AND oa_task_jobWhereInput | oa_task_jobWhereInput[] No
OR oa_task_jobWhereInput[] No
NOT oa_task_jobWhereInput | oa_task_jobWhereInput[] No
id BigIntFilter | BigInt No
task_label StringFilter | String No
job_name StringFilter | String No
task_name StringFilter | String No
task_target StringFilter | String No
execution_time DateTimeNullableFilter | DateTime | Null Yes
execution_script StringNullableFilter | String | Null Yes
execution_log JsonNullableFilter No
executed IntFilter | Int No
exec_start_date DateTimeNullableFilter | DateTime | Null Yes
exec_end_date DateTimeNullableFilter | DateTime | Null Yes
enable IntFilter | Int No
created_user StringFilter | String No
created_date DateTimeFilter | DateTime No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

oa_task_jobOrderByWithRelationInput

Name Type Nullable
id SortOrder No
task_label SortOrder No
job_name SortOrder No
task_name SortOrder No
task_target SortOrder No
execution_time SortOrder | SortOrderInput No
execution_script SortOrder | SortOrderInput No
execution_log SortOrder | SortOrderInput No
executed SortOrder No
exec_start_date SortOrder | SortOrderInput No
exec_end_date SortOrder | SortOrderInput No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

oa_task_jobWhereUniqueInput

Name Type Nullable
id BigInt No
AND oa_task_jobWhereInput | oa_task_jobWhereInput[] No
OR oa_task_jobWhereInput[] No
NOT oa_task_jobWhereInput | oa_task_jobWhereInput[] No
task_label StringFilter | String No
job_name StringFilter | String No
task_name StringFilter | String No
task_target StringFilter | String No
execution_time DateTimeNullableFilter | DateTime | Null Yes
execution_script StringNullableFilter | String | Null Yes
execution_log JsonNullableFilter No
executed IntFilter | Int No
exec_start_date DateTimeNullableFilter | DateTime | Null Yes
exec_end_date DateTimeNullableFilter | DateTime | Null Yes
enable IntFilter | Int No
created_user StringFilter | String No
created_date DateTimeFilter | DateTime No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

oa_task_jobOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
task_label SortOrder No
job_name SortOrder No
task_name SortOrder No
task_target SortOrder No
execution_time SortOrder | SortOrderInput No
execution_script SortOrder | SortOrderInput No
execution_log SortOrder | SortOrderInput No
executed SortOrder No
exec_start_date SortOrder | SortOrderInput No
exec_end_date SortOrder | SortOrderInput No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
_count oa_task_jobCountOrderByAggregateInput No
_avg oa_task_jobAvgOrderByAggregateInput No
_max oa_task_jobMaxOrderByAggregateInput No
_min oa_task_jobMinOrderByAggregateInput No
_sum oa_task_jobSumOrderByAggregateInput No

oa_task_jobScalarWhereWithAggregatesInput

Name Type Nullable
AND oa_task_jobScalarWhereWithAggregatesInput | oa_task_jobScalarWhereWithAggregatesInput[] No
OR oa_task_jobScalarWhereWithAggregatesInput[] No
NOT oa_task_jobScalarWhereWithAggregatesInput | oa_task_jobScalarWhereWithAggregatesInput[] No
id BigIntWithAggregatesFilter | BigInt No
task_label StringWithAggregatesFilter | String No
job_name StringWithAggregatesFilter | String No
task_name StringWithAggregatesFilter | String No
task_target StringWithAggregatesFilter | String No
execution_time DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
execution_script StringNullableWithAggregatesFilter | String | Null Yes
execution_log JsonNullableWithAggregatesFilter No
executed IntWithAggregatesFilter | Int No
exec_start_date DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
exec_end_date DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
enable IntWithAggregatesFilter | Int No
created_user StringWithAggregatesFilter | String No
created_date DateTimeWithAggregatesFilter | DateTime No
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No

oa_territoryWhereInput

Name Type Nullable
AND oa_territoryWhereInput | oa_territoryWhereInput[] No
OR oa_territoryWhereInput[] No
NOT oa_territoryWhereInput | oa_territoryWhereInput[] No
id StringFilter | String No
code StringFilter | String No
title StringNullableFilter | String | Null Yes
default_territory StringFilter | String No
language StringFilter | String No
default_language StringFilter | String No
timezone StringNullableFilter | String | Null Yes
priority IntNullableFilter | Int | Null Yes
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

oa_territoryOrderByWithRelationInput

Name Type Nullable
id SortOrder No
code SortOrder No
title SortOrder | SortOrderInput No
default_territory SortOrder No
language SortOrder No
default_language SortOrder No
timezone SortOrder | SortOrderInput No
priority SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No

oa_territoryWhereUniqueInput

Name Type Nullable
id String No
code String No
AND oa_territoryWhereInput | oa_territoryWhereInput[] No
OR oa_territoryWhereInput[] No
NOT oa_territoryWhereInput | oa_territoryWhereInput[] No
title StringNullableFilter | String | Null Yes
default_territory StringFilter | String No
language StringFilter | String No
default_language StringFilter | String No
timezone StringNullableFilter | String | Null Yes
priority IntNullableFilter | Int | Null Yes
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

oa_territoryOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
code SortOrder No
title SortOrder | SortOrderInput No
default_territory SortOrder No
language SortOrder No
default_language SortOrder No
timezone SortOrder | SortOrderInput No
priority SortOrder | SortOrderInput No
updated_user SortOrder No
updated_date SortOrder No
_count oa_territoryCountOrderByAggregateInput No
_avg oa_territoryAvgOrderByAggregateInput No
_max oa_territoryMaxOrderByAggregateInput No
_min oa_territoryMinOrderByAggregateInput No
_sum oa_territorySumOrderByAggregateInput No

oa_territoryScalarWhereWithAggregatesInput

Name Type Nullable
AND oa_territoryScalarWhereWithAggregatesInput | oa_territoryScalarWhereWithAggregatesInput[] No
OR oa_territoryScalarWhereWithAggregatesInput[] No
NOT oa_territoryScalarWhereWithAggregatesInput | oa_territoryScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
code StringWithAggregatesFilter | String No
title StringNullableWithAggregatesFilter | String | Null Yes
default_territory StringWithAggregatesFilter | String No
language StringWithAggregatesFilter | String No
default_language StringWithAggregatesFilter | String No
timezone StringNullableWithAggregatesFilter | String | Null Yes
priority IntNullableWithAggregatesFilter | Int | Null Yes
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No

system_functionWhereInput

Name Type Nullable
AND system_functionWhereInput | system_functionWhereInput[] No
OR system_functionWhereInput[] No
NOT system_functionWhereInput | system_functionWhereInput[] No
id StringFilter | String No
menu_id StringFilter | String No
name StringFilter | String No
show_name StringFilter | String No
icon StringNullableFilter | String | Null Yes
type StringFilter | String No
enable BoolFilter | Boolean No
created_user StringFilter | String No
created_date DateTimeFilter | DateTime No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

system_functionOrderByWithRelationInput

Name Type Nullable
id SortOrder No
menu_id SortOrder No
name SortOrder No
show_name SortOrder No
icon SortOrder | SortOrderInput No
type SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

system_functionWhereUniqueInput

Name Type Nullable
id String No
AND system_functionWhereInput | system_functionWhereInput[] No
OR system_functionWhereInput[] No
NOT system_functionWhereInput | system_functionWhereInput[] No
menu_id StringFilter | String No
name StringFilter | String No
show_name StringFilter | String No
icon StringNullableFilter | String | Null Yes
type StringFilter | String No
enable BoolFilter | Boolean No
created_user StringFilter | String No
created_date DateTimeFilter | DateTime No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

system_functionOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
menu_id SortOrder No
name SortOrder No
show_name SortOrder No
icon SortOrder | SortOrderInput No
type SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
_count system_functionCountOrderByAggregateInput No
_max system_functionMaxOrderByAggregateInput No
_min system_functionMinOrderByAggregateInput No

system_functionScalarWhereWithAggregatesInput

Name Type Nullable
AND system_functionScalarWhereWithAggregatesInput | system_functionScalarWhereWithAggregatesInput[] No
OR system_functionScalarWhereWithAggregatesInput[] No
NOT system_functionScalarWhereWithAggregatesInput | system_functionScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
menu_id StringWithAggregatesFilter | String No
name StringWithAggregatesFilter | String No
show_name StringWithAggregatesFilter | String No
icon StringNullableWithAggregatesFilter | String | Null Yes
type StringWithAggregatesFilter | String No
enable BoolWithAggregatesFilter | Boolean No
created_user StringWithAggregatesFilter | String No
created_date DateTimeWithAggregatesFilter | DateTime No
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No

system_menuWhereInput

Name Type Nullable
AND system_menuWhereInput | system_menuWhereInput[] No
OR system_menuWhereInput[] No
NOT system_menuWhereInput | system_menuWhereInput[] No
id StringFilter | String No
cascade_id StringNullableFilter | String | Null Yes
name StringFilter | String No
pathname StringFilter | String No
icon StringNullableFilter | String | Null Yes
show_in_menu BoolFilter | Boolean No
is_web_page BoolFilter | Boolean No
is_need_login BoolFilter | Boolean No
parent_id StringNullableFilter | String | Null Yes
table_memo StringNullableFilter | String | Null Yes
sort IntFilter | Int No
enable BoolFilter | Boolean No
created_user StringFilter | String No
created_date DateTimeFilter | DateTime No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

system_menuOrderByWithRelationInput

Name Type Nullable
id SortOrder No
cascade_id SortOrder | SortOrderInput No
name SortOrder No
pathname SortOrder No
icon SortOrder | SortOrderInput No
show_in_menu SortOrder No
is_web_page SortOrder No
is_need_login SortOrder No
parent_id SortOrder | SortOrderInput No
table_memo SortOrder | SortOrderInput No
sort SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

system_menuWhereUniqueInput

Name Type Nullable
id String No
AND system_menuWhereInput | system_menuWhereInput[] No
OR system_menuWhereInput[] No
NOT system_menuWhereInput | system_menuWhereInput[] No
cascade_id StringNullableFilter | String | Null Yes
name StringFilter | String No
pathname StringFilter | String No
icon StringNullableFilter | String | Null Yes
show_in_menu BoolFilter | Boolean No
is_web_page BoolFilter | Boolean No
is_need_login BoolFilter | Boolean No
parent_id StringNullableFilter | String | Null Yes
table_memo StringNullableFilter | String | Null Yes
sort IntFilter | Int No
enable BoolFilter | Boolean No
created_user StringFilter | String No
created_date DateTimeFilter | DateTime No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

system_menuOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
cascade_id SortOrder | SortOrderInput No
name SortOrder No
pathname SortOrder No
icon SortOrder | SortOrderInput No
show_in_menu SortOrder No
is_web_page SortOrder No
is_need_login SortOrder No
parent_id SortOrder | SortOrderInput No
table_memo SortOrder | SortOrderInput No
sort SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
_count system_menuCountOrderByAggregateInput No
_avg system_menuAvgOrderByAggregateInput No
_max system_menuMaxOrderByAggregateInput No
_min system_menuMinOrderByAggregateInput No
_sum system_menuSumOrderByAggregateInput No

system_menuScalarWhereWithAggregatesInput

Name Type Nullable
AND system_menuScalarWhereWithAggregatesInput | system_menuScalarWhereWithAggregatesInput[] No
OR system_menuScalarWhereWithAggregatesInput[] No
NOT system_menuScalarWhereWithAggregatesInput | system_menuScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
cascade_id StringNullableWithAggregatesFilter | String | Null Yes
name StringWithAggregatesFilter | String No
pathname StringWithAggregatesFilter | String No
icon StringNullableWithAggregatesFilter | String | Null Yes
show_in_menu BoolWithAggregatesFilter | Boolean No
is_web_page BoolWithAggregatesFilter | Boolean No
is_need_login BoolWithAggregatesFilter | Boolean No
parent_id StringNullableWithAggregatesFilter | String | Null Yes
table_memo StringNullableWithAggregatesFilter | String | Null Yes
sort IntWithAggregatesFilter | Int No
enable BoolWithAggregatesFilter | Boolean No
created_user StringWithAggregatesFilter | String No
created_date DateTimeWithAggregatesFilter | DateTime No
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No

system_relevanceWhereInput

Name Type Nullable
AND system_relevanceWhereInput | system_relevanceWhereInput[] No
OR system_relevanceWhereInput[] No
NOT system_relevanceWhereInput | system_relevanceWhereInput[] No
id StringFilter | String No
memo StringNullableFilter | String | Null Yes
type StringFilter | String No
first_id StringFilter | String No
second_id StringFilter | String No
third_id StringNullableFilter | String | Null Yes
enable BoolFilter | Boolean No
created_user StringFilter | String No
created_date DateTimeFilter | DateTime No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

system_relevanceOrderByWithRelationInput

Name Type Nullable
id SortOrder No
memo SortOrder | SortOrderInput No
type SortOrder No
first_id SortOrder No
second_id SortOrder No
third_id SortOrder | SortOrderInput No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

system_relevanceWhereUniqueInput

Name Type Nullable
id String No
AND system_relevanceWhereInput | system_relevanceWhereInput[] No
OR system_relevanceWhereInput[] No
NOT system_relevanceWhereInput | system_relevanceWhereInput[] No
memo StringNullableFilter | String | Null Yes
type StringFilter | String No
first_id StringFilter | String No
second_id StringFilter | String No
third_id StringNullableFilter | String | Null Yes
enable BoolFilter | Boolean No
created_user StringFilter | String No
created_date DateTimeFilter | DateTime No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

system_relevanceOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
memo SortOrder | SortOrderInput No
type SortOrder No
first_id SortOrder No
second_id SortOrder No
third_id SortOrder | SortOrderInput No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
_count system_relevanceCountOrderByAggregateInput No
_max system_relevanceMaxOrderByAggregateInput No
_min system_relevanceMinOrderByAggregateInput No

system_relevanceScalarWhereWithAggregatesInput

Name Type Nullable
AND system_relevanceScalarWhereWithAggregatesInput | system_relevanceScalarWhereWithAggregatesInput[] No
OR system_relevanceScalarWhereWithAggregatesInput[] No
NOT system_relevanceScalarWhereWithAggregatesInput | system_relevanceScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
memo StringNullableWithAggregatesFilter | String | Null Yes
type StringWithAggregatesFilter | String No
first_id StringWithAggregatesFilter | String No
second_id StringWithAggregatesFilter | String No
third_id StringNullableWithAggregatesFilter | String | Null Yes
enable BoolWithAggregatesFilter | Boolean No
created_user StringWithAggregatesFilter | String No
created_date DateTimeWithAggregatesFilter | DateTime No
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No

system_roleWhereInput

Name Type Nullable
AND system_roleWhereInput | system_roleWhereInput[] No
OR system_roleWhereInput[] No
NOT system_roleWhereInput | system_roleWhereInput[] No
id StringFilter | String No
code StringFilter | String No
name StringFilter | String No
enable BoolFilter | Boolean No
created_user StringFilter | String No
created_date DateTimeFilter | DateTime No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

system_roleOrderByWithRelationInput

Name Type Nullable
id SortOrder No
code SortOrder No
name SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

system_roleWhereUniqueInput

Name Type Nullable
id String No
code String No
AND system_roleWhereInput | system_roleWhereInput[] No
OR system_roleWhereInput[] No
NOT system_roleWhereInput | system_roleWhereInput[] No
name StringFilter | String No
enable BoolFilter | Boolean No
created_user StringFilter | String No
created_date DateTimeFilter | DateTime No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

system_roleOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
code SortOrder No
name SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
_count system_roleCountOrderByAggregateInput No
_max system_roleMaxOrderByAggregateInput No
_min system_roleMinOrderByAggregateInput No


system_userWhereInput

Name Type Nullable
AND system_userWhereInput | system_userWhereInput[] No
OR system_userWhereInput[] No
NOT system_userWhereInput | system_userWhereInput[] No
id StringFilter | String No
provider_id StringFilter | String No
provider StringFilter | String No
display_name StringFilter | String No
family_name StringFilter | String No
given_name StringFilter | String No
email StringFilter | String No
email_verified BoolNullableFilter | Boolean | Null Yes
password StringFilter | String No
language StringFilter | String No
locale StringNullableFilter | String | Null Yes
picture StringNullableFilter | String | Null Yes
enable BoolFilter | Boolean No
created_user StringFilter | String No
created_date DateTimeFilter | DateTime No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

system_userOrderByWithRelationInput

Name Type Nullable
id SortOrder No
provider_id SortOrder No
provider SortOrder No
display_name SortOrder No
family_name SortOrder No
given_name SortOrder No
email SortOrder No
email_verified SortOrder | SortOrderInput No
password SortOrder No
language SortOrder No
locale SortOrder | SortOrderInput No
picture SortOrder | SortOrderInput No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

system_userWhereUniqueInput

Name Type Nullable
id String No
provider_id String No
email String No
AND system_userWhereInput | system_userWhereInput[] No
OR system_userWhereInput[] No
NOT system_userWhereInput | system_userWhereInput[] No
provider StringFilter | String No
display_name StringFilter | String No
family_name StringFilter | String No
given_name StringFilter | String No
email_verified BoolNullableFilter | Boolean | Null Yes
password StringFilter | String No
language StringFilter | String No
locale StringNullableFilter | String | Null Yes
picture StringNullableFilter | String | Null Yes
enable BoolFilter | Boolean No
created_user StringFilter | String No
created_date DateTimeFilter | DateTime No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

system_userOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
provider_id SortOrder No
provider SortOrder No
display_name SortOrder No
family_name SortOrder No
given_name SortOrder No
email SortOrder No
email_verified SortOrder | SortOrderInput No
password SortOrder No
language SortOrder No
locale SortOrder | SortOrderInput No
picture SortOrder | SortOrderInput No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
_count system_userCountOrderByAggregateInput No
_max system_userMaxOrderByAggregateInput No
_min system_userMinOrderByAggregateInput No

system_userScalarWhereWithAggregatesInput

Name Type Nullable
AND system_userScalarWhereWithAggregatesInput | system_userScalarWhereWithAggregatesInput[] No
OR system_userScalarWhereWithAggregatesInput[] No
NOT system_userScalarWhereWithAggregatesInput | system_userScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
provider_id StringWithAggregatesFilter | String No
provider StringWithAggregatesFilter | String No
display_name StringWithAggregatesFilter | String No
family_name StringWithAggregatesFilter | String No
given_name StringWithAggregatesFilter | String No
email StringWithAggregatesFilter | String No
email_verified BoolNullableWithAggregatesFilter | Boolean | Null Yes
password StringWithAggregatesFilter | String No
language StringWithAggregatesFilter | String No
locale StringNullableWithAggregatesFilter | String | Null Yes
picture StringNullableWithAggregatesFilter | String | Null Yes
enable BoolWithAggregatesFilter | Boolean No
created_user StringWithAggregatesFilter | String No
created_date DateTimeWithAggregatesFilter | DateTime No
updated_user StringWithAggregatesFilter | String No
updated_date DateTimeWithAggregatesFilter | DateTime No

AccountWhereInput

Name Type Nullable
AND AccountWhereInput | AccountWhereInput[] No
OR AccountWhereInput[] No
NOT AccountWhereInput | AccountWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
type StringFilter | String No
provider StringFilter | String No
providerAccountId StringFilter | String No
refresh_token StringNullableFilter | String | Null Yes
access_token StringNullableFilter | String | Null Yes
expires_at IntNullableFilter | Int | Null Yes
token_type StringNullableFilter | String | Null Yes
scope StringNullableFilter | String | Null Yes
id_token StringNullableFilter | String | Null Yes
session_state StringNullableFilter | String | Null Yes
user UserRelationFilter | UserWhereInput No

AccountOrderByWithRelationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder | SortOrderInput No
access_token SortOrder | SortOrderInput No
expires_at SortOrder | SortOrderInput No
token_type SortOrder | SortOrderInput No
scope SortOrder | SortOrderInput No
id_token SortOrder | SortOrderInput No
session_state SortOrder | SortOrderInput No
user UserOrderByWithRelationInput No

AccountWhereUniqueInput

Name Type Nullable
id String No
provider_providerAccountId AccountProviderProviderAccountIdCompoundUniqueInput No
AND AccountWhereInput | AccountWhereInput[] No
OR AccountWhereInput[] No
NOT AccountWhereInput | AccountWhereInput[] No
userId StringFilter | String No
type StringFilter | String No
provider StringFilter | String No
providerAccountId StringFilter | String No
refresh_token StringNullableFilter | String | Null Yes
access_token StringNullableFilter | String | Null Yes
expires_at IntNullableFilter | Int | Null Yes
token_type StringNullableFilter | String | Null Yes
scope StringNullableFilter | String | Null Yes
id_token StringNullableFilter | String | Null Yes
session_state StringNullableFilter | String | Null Yes
user UserRelationFilter | UserWhereInput No

AccountOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder | SortOrderInput No
access_token SortOrder | SortOrderInput No
expires_at SortOrder | SortOrderInput No
token_type SortOrder | SortOrderInput No
scope SortOrder | SortOrderInput No
id_token SortOrder | SortOrderInput No
session_state SortOrder | SortOrderInput No
_count AccountCountOrderByAggregateInput No
_avg AccountAvgOrderByAggregateInput No
_max AccountMaxOrderByAggregateInput No
_min AccountMinOrderByAggregateInput No
_sum AccountSumOrderByAggregateInput No

AccountScalarWhereWithAggregatesInput

Name Type Nullable
AND AccountScalarWhereWithAggregatesInput | AccountScalarWhereWithAggregatesInput[] No
OR AccountScalarWhereWithAggregatesInput[] No
NOT AccountScalarWhereWithAggregatesInput | AccountScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
userId StringWithAggregatesFilter | String No
type StringWithAggregatesFilter | String No
provider StringWithAggregatesFilter | String No
providerAccountId StringWithAggregatesFilter | String No
refresh_token StringNullableWithAggregatesFilter | String | Null Yes
access_token StringNullableWithAggregatesFilter | String | Null Yes
expires_at IntNullableWithAggregatesFilter | Int | Null Yes
token_type StringNullableWithAggregatesFilter | String | Null Yes
scope StringNullableWithAggregatesFilter | String | Null Yes
id_token StringNullableWithAggregatesFilter | String | Null Yes
session_state StringNullableWithAggregatesFilter | String | Null Yes

SessionWhereInput

Name Type Nullable
AND SessionWhereInput | SessionWhereInput[] No
OR SessionWhereInput[] No
NOT SessionWhereInput | SessionWhereInput[] No
id StringFilter | String No
sessionToken StringFilter | String No
userId StringFilter | String No
expires DateTimeFilter | DateTime No
user UserRelationFilter | UserWhereInput No

SessionOrderByWithRelationInput

Name Type Nullable
id SortOrder No
sessionToken SortOrder No
userId SortOrder No
expires SortOrder No
user UserOrderByWithRelationInput No

SessionWhereUniqueInput

Name Type Nullable
id String No
sessionToken String No
AND SessionWhereInput | SessionWhereInput[] No
OR SessionWhereInput[] No
NOT SessionWhereInput | SessionWhereInput[] No
userId StringFilter | String No
expires DateTimeFilter | DateTime No
user UserRelationFilter | UserWhereInput No

SessionOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
sessionToken SortOrder No
userId SortOrder No
expires SortOrder No
_count SessionCountOrderByAggregateInput No
_max SessionMaxOrderByAggregateInput No
_min SessionMinOrderByAggregateInput No


UserWhereInput

Name Type Nullable
AND UserWhereInput | UserWhereInput[] No
OR UserWhereInput[] No
NOT UserWhereInput | UserWhereInput[] No
id StringFilter | String No
name StringNullableFilter | String | Null Yes
email StringNullableFilter | String | Null Yes
emailVerified DateTimeNullableFilter | DateTime | Null Yes
image StringNullableFilter | String | Null Yes
accounts AccountListRelationFilter No
sessions SessionListRelationFilter No

UserOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder | SortOrderInput No
email SortOrder | SortOrderInput No
emailVerified SortOrder | SortOrderInput No
image SortOrder | SortOrderInput No
accounts AccountOrderByRelationAggregateInput No
sessions SessionOrderByRelationAggregateInput No

UserWhereUniqueInput

Name Type Nullable
id String No
email String No
AND UserWhereInput | UserWhereInput[] No
OR UserWhereInput[] No
NOT UserWhereInput | UserWhereInput[] No
name StringNullableFilter | String | Null Yes
emailVerified DateTimeNullableFilter | DateTime | Null Yes
image StringNullableFilter | String | Null Yes
accounts AccountListRelationFilter No
sessions SessionListRelationFilter No

UserOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder | SortOrderInput No
email SortOrder | SortOrderInput No
emailVerified SortOrder | SortOrderInput No
image SortOrder | SortOrderInput No
_count UserCountOrderByAggregateInput No
_max UserMaxOrderByAggregateInput No
_min UserMinOrderByAggregateInput No


VerificationTokenWhereInput

Name Type Nullable
AND VerificationTokenWhereInput | VerificationTokenWhereInput[] No
OR VerificationTokenWhereInput[] No
NOT VerificationTokenWhereInput | VerificationTokenWhereInput[] No
identifier StringFilter | String No
token StringFilter | String No
expires DateTimeFilter | DateTime No

VerificationTokenOrderByWithRelationInput

Name Type Nullable
identifier SortOrder No
token SortOrder No
expires SortOrder No

VerificationTokenWhereUniqueInput

Name Type Nullable
token String No
identifier_token VerificationTokenIdentifierTokenCompoundUniqueInput No
AND VerificationTokenWhereInput | VerificationTokenWhereInput[] No
OR VerificationTokenWhereInput[] No
NOT VerificationTokenWhereInput | VerificationTokenWhereInput[] No
identifier StringFilter | String No
expires DateTimeFilter | DateTime No

VerificationTokenOrderByWithAggregationInput

Name Type Nullable
identifier SortOrder No
token SortOrder No
expires SortOrder No
_count VerificationTokenCountOrderByAggregateInput No
_max VerificationTokenMaxOrderByAggregateInput No
_min VerificationTokenMinOrderByAggregateInput No


cms_categoryCreateInput

Name Type Nullable
id BigInt No
territory String No
key String No
code String No
title NullableJsonNullValueInput | Json No
on_used Boolean No
sequence Int | Null Yes
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
cms_category_mapping cms_category_mappingCreateNestedManyWithoutCms_categoryInput No

cms_categoryUncheckedCreateInput

Name Type Nullable
id BigInt No
territory String No
key String No
code String No
title NullableJsonNullValueInput | Json No
on_used Boolean No
sequence Int | Null Yes
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
cms_category_mapping cms_category_mappingUncheckedCreateNestedManyWithoutCms_categoryInput No

cms_categoryUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
key String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
on_used Boolean | BoolFieldUpdateOperationsInput No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
cms_category_mapping cms_category_mappingUpdateManyWithoutCms_categoryNestedInput No

cms_categoryUncheckedUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
key String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
on_used Boolean | BoolFieldUpdateOperationsInput No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
cms_category_mapping cms_category_mappingUncheckedUpdateManyWithoutCms_categoryNestedInput No

cms_categoryCreateManyInput

Name Type Nullable
id BigInt No
territory String No
key String No
code String No
title NullableJsonNullValueInput | Json No
on_used Boolean No
sequence Int | Null Yes
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_categoryUpdateManyMutationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
key String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
on_used Boolean | BoolFieldUpdateOperationsInput No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_categoryUncheckedUpdateManyInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
key String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
on_used Boolean | BoolFieldUpdateOperationsInput No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_category_mappingCreateInput

Name Type Nullable
id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No
cms_category cms_categoryCreateNestedOneWithoutCms_category_mappingInput No
cms_resource cms_resourceCreateNestedOneWithoutCms_category_mappingInput No

cms_category_mappingUncheckedCreateInput

Name Type Nullable
id BigInt No
resource_id BigInt No
category_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No

cms_category_mappingUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
cms_category cms_categoryUpdateOneRequiredWithoutCms_category_mappingNestedInput No
cms_resource cms_resourceUpdateOneRequiredWithoutCms_category_mappingNestedInput No

cms_category_mappingUncheckedUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
category_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_category_mappingCreateManyInput

Name Type Nullable
id BigInt No
resource_id BigInt No
category_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No

cms_category_mappingUpdateManyMutationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_category_mappingUncheckedUpdateManyInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
category_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_channelCreateInput

Name Type Nullable
id BigInt No
licensor_id BigInt No
code String No
handle String No
title NullableJsonNullValueInput | Json No
image NullableJsonNullValueInput | Json No
description NullableJsonNullValueInput | Json No
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
seo_info NullableJsonNullValueInput | Json No
territory String No
default_territory String No
created_date DateTime | Null Yes
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes

cms_channelUncheckedCreateInput

Name Type Nullable
id BigInt No
licensor_id BigInt No
code String No
handle String No
title NullableJsonNullValueInput | Json No
image NullableJsonNullValueInput | Json No
description NullableJsonNullValueInput | Json No
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
seo_info NullableJsonNullValueInput | Json No
territory String No
default_territory String No
created_date DateTime | Null Yes
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes

cms_channelUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
licensor_id BigInt | BigIntFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
handle String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
image NullableJsonNullValueInput | Json No
description NullableJsonNullValueInput | Json No
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
seo_info NullableJsonNullValueInput | Json No
territory String | StringFieldUpdateOperationsInput No
default_territory String | StringFieldUpdateOperationsInput No
created_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes

cms_channelUncheckedUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
licensor_id BigInt | BigIntFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
handle String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
image NullableJsonNullValueInput | Json No
description NullableJsonNullValueInput | Json No
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
seo_info NullableJsonNullValueInput | Json No
territory String | StringFieldUpdateOperationsInput No
default_territory String | StringFieldUpdateOperationsInput No
created_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes

cms_channelCreateManyInput

Name Type Nullable
id BigInt No
licensor_id BigInt No
code String No
handle String No
title NullableJsonNullValueInput | Json No
image NullableJsonNullValueInput | Json No
description NullableJsonNullValueInput | Json No
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
seo_info NullableJsonNullValueInput | Json No
territory String No
default_territory String No
created_date DateTime | Null Yes
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes

cms_channelUpdateManyMutationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
licensor_id BigInt | BigIntFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
handle String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
image NullableJsonNullValueInput | Json No
description NullableJsonNullValueInput | Json No
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
seo_info NullableJsonNullValueInput | Json No
territory String | StringFieldUpdateOperationsInput No
default_territory String | StringFieldUpdateOperationsInput No
created_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes

cms_channelUncheckedUpdateManyInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
licensor_id BigInt | BigIntFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
handle String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
image NullableJsonNullValueInput | Json No
description NullableJsonNullValueInput | Json No
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
seo_info NullableJsonNullValueInput | Json No
territory String | StringFieldUpdateOperationsInput No
default_territory String | StringFieldUpdateOperationsInput No
created_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes

cms_curationCreateInput

Name Type Nullable
id BigInt No
key String | Null Yes
code String | Null Yes
title NullableJsonNullValueInput | Json No
company_id String No
territory String No
default_territory String | Null Yes
status String No
detail_parameter NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes
cms_curation_mapping cms_curation_mappingCreateNestedManyWithoutCms_curationInput No

cms_curationUncheckedCreateInput

Name Type Nullable
id BigInt No
key String | Null Yes
code String | Null Yes
title NullableJsonNullValueInput | Json No
company_id String No
territory String No
default_territory String | Null Yes
status String No
detail_parameter NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes
cms_curation_mapping cms_curation_mappingUncheckedCreateNestedManyWithoutCms_curationInput No

cms_curationUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
title NullableJsonNullValueInput | Json No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
detail_parameter NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes
cms_curation_mapping cms_curation_mappingUpdateManyWithoutCms_curationNestedInput No

cms_curationUncheckedUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
title NullableJsonNullValueInput | Json No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
detail_parameter NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes
cms_curation_mapping cms_curation_mappingUncheckedUpdateManyWithoutCms_curationNestedInput No

cms_curationCreateManyInput

Name Type Nullable
id BigInt No
key String | Null Yes
code String | Null Yes
title NullableJsonNullValueInput | Json No
company_id String No
territory String No
default_territory String | Null Yes
status String No
detail_parameter NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes

cms_curationUpdateManyMutationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
title NullableJsonNullValueInput | Json No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
detail_parameter NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes

cms_curationUncheckedUpdateManyInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
title NullableJsonNullValueInput | Json No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
detail_parameter NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes

cms_curation_mappingCreateInput

Name Type Nullable
id BigInt No
resource_id BigInt No
edited Boolean | Null Yes
sequence Int | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
cms_curation cms_curationCreateNestedOneWithoutCms_curation_mappingInput No

cms_curation_mappingUncheckedCreateInput

Name Type Nullable
id BigInt No
resource_id BigInt No
curation_id BigInt No
edited Boolean | Null Yes
sequence Int | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_curation_mappingUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
edited Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
cms_curation cms_curationUpdateOneRequiredWithoutCms_curation_mappingNestedInput No

cms_curation_mappingUncheckedUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
curation_id BigInt | BigIntFieldUpdateOperationsInput No
edited Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_curation_mappingCreateManyInput

Name Type Nullable
id BigInt No
resource_id BigInt No
curation_id BigInt No
edited Boolean | Null Yes
sequence Int | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_curation_mappingUpdateManyMutationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
edited Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_curation_mappingUncheckedUpdateManyInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
curation_id BigInt | BigIntFieldUpdateOperationsInput No
edited Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_curation_schedulingCreateInput

Name Type Nullable
id BigInt No
curation_id BigInt No
title NullableJsonNullValueInput | Json No
key String | Null Yes
territory String | Null Yes
description String No
status String No
published_date DateTime | Null Yes
synchronized Boolean No
enabled Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No
cms_curation_scheduling_item cms_curation_scheduling_itemCreateNestedManyWithoutCms_curation_schedulingInput No

cms_curation_schedulingUncheckedCreateInput

Name Type Nullable
id BigInt No
curation_id BigInt No
title NullableJsonNullValueInput | Json No
key String | Null Yes
territory String | Null Yes
description String No
status String No
published_date DateTime | Null Yes
synchronized Boolean No
enabled Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No
cms_curation_scheduling_item cms_curation_scheduling_itemUncheckedCreateNestedManyWithoutCms_curation_schedulingInput No

cms_curation_schedulingUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
curation_id BigInt | BigIntFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
territory String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | StringFieldUpdateOperationsInput No
status String | StringFieldUpdateOperationsInput No
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
synchronized Boolean | BoolFieldUpdateOperationsInput No
enabled Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
cms_curation_scheduling_item cms_curation_scheduling_itemUpdateManyWithoutCms_curation_schedulingNestedInput No

cms_curation_schedulingUncheckedUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
curation_id BigInt | BigIntFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
territory String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | StringFieldUpdateOperationsInput No
status String | StringFieldUpdateOperationsInput No
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
synchronized Boolean | BoolFieldUpdateOperationsInput No
enabled Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
cms_curation_scheduling_item cms_curation_scheduling_itemUncheckedUpdateManyWithoutCms_curation_schedulingNestedInput No

cms_curation_schedulingCreateManyInput

Name Type Nullable
id BigInt No
curation_id BigInt No
title NullableJsonNullValueInput | Json No
key String | Null Yes
territory String | Null Yes
description String No
status String No
published_date DateTime | Null Yes
synchronized Boolean No
enabled Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

cms_curation_schedulingUpdateManyMutationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
curation_id BigInt | BigIntFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
territory String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | StringFieldUpdateOperationsInput No
status String | StringFieldUpdateOperationsInput No
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
synchronized Boolean | BoolFieldUpdateOperationsInput No
enabled Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_curation_schedulingUncheckedUpdateManyInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
curation_id BigInt | BigIntFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
territory String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | StringFieldUpdateOperationsInput No
status String | StringFieldUpdateOperationsInput No
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
synchronized Boolean | BoolFieldUpdateOperationsInput No
enabled Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_curation_scheduling_itemCreateInput

Name Type Nullable
id BigInt No
resource_id BigInt No
curation_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
updated_user String No
updated_date DateTime No
cms_curation_scheduling cms_curation_schedulingCreateNestedOneWithoutCms_curation_scheduling_itemInput No

cms_curation_scheduling_itemUncheckedCreateInput

Name Type Nullable
id BigInt No
parent_id BigInt No
resource_id BigInt No
curation_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
updated_user String No
updated_date DateTime No

cms_curation_scheduling_itemUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
curation_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
cms_curation_scheduling cms_curation_schedulingUpdateOneRequiredWithoutCms_curation_scheduling_itemNestedInput No

cms_curation_scheduling_itemUncheckedUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
parent_id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
curation_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_curation_scheduling_itemCreateManyInput

Name Type Nullable
id BigInt No
parent_id BigInt No
resource_id BigInt No
curation_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
updated_user String No
updated_date DateTime No

cms_curation_scheduling_itemUpdateManyMutationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
curation_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_curation_scheduling_itemUncheckedUpdateManyInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
parent_id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
curation_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_hash_tagCreateInput

Name Type Nullable
id BigInt No
title String No
sequence Int | Null Yes
statistics NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
cms_hash_tag_mapping cms_hash_tag_mappingCreateNestedManyWithoutCms_hash_tagInput No

cms_hash_tagUncheckedCreateInput

Name Type Nullable
id BigInt No
title String No
sequence Int | Null Yes
statistics NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
cms_hash_tag_mapping cms_hash_tag_mappingUncheckedCreateNestedManyWithoutCms_hash_tagInput No

cms_hash_tagUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
statistics NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
cms_hash_tag_mapping cms_hash_tag_mappingUpdateManyWithoutCms_hash_tagNestedInput No

cms_hash_tagUncheckedUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
statistics NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
cms_hash_tag_mapping cms_hash_tag_mappingUncheckedUpdateManyWithoutCms_hash_tagNestedInput No

cms_hash_tagCreateManyInput

Name Type Nullable
id BigInt No
title String No
sequence Int | Null Yes
statistics NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_hash_tagUpdateManyMutationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
statistics NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_hash_tagUncheckedUpdateManyInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
statistics NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_hash_tag_mappingCreateInput

Name Type Nullable
id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No
cms_hash_tag cms_hash_tagCreateNestedOneWithoutCms_hash_tag_mappingInput No
cms_resource cms_resourceCreateNestedOneWithoutCms_hash_tag_mappingInput No

cms_hash_tag_mappingUncheckedCreateInput

Name Type Nullable
id BigInt No
resource_id BigInt No
hash_tag_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No

cms_hash_tag_mappingUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
cms_hash_tag cms_hash_tagUpdateOneRequiredWithoutCms_hash_tag_mappingNestedInput No
cms_resource cms_resourceUpdateOneRequiredWithoutCms_hash_tag_mappingNestedInput No

cms_hash_tag_mappingUncheckedUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
hash_tag_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_hash_tag_mappingCreateManyInput

Name Type Nullable
id BigInt No
resource_id BigInt No
hash_tag_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No

cms_hash_tag_mappingUpdateManyMutationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_hash_tag_mappingUncheckedUpdateManyInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
hash_tag_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_label_infoCreateInput

Name Type Nullable
id BigInt No
key String | Null Yes
title NullableJsonNullValueInput | Json No
sequence Int | Null Yes
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes

cms_label_infoUncheckedCreateInput

Name Type Nullable
id BigInt No
key String | Null Yes
title NullableJsonNullValueInput | Json No
sequence Int | Null Yes
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes

cms_label_infoUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
title NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes

cms_label_infoUncheckedUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
title NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes

cms_label_infoCreateManyInput

Name Type Nullable
id BigInt No
key String | Null Yes
title NullableJsonNullValueInput | Json No
sequence Int | Null Yes
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes

cms_label_infoUpdateManyMutationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
title NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes

cms_label_infoUncheckedUpdateManyInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
title NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes

cms_label_info_mappingCreateInput

Name Type Nullable
id BigInt No
mapping_type String No
detail_mapping_id String No
label_info_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No

cms_label_info_mappingUncheckedCreateInput

Name Type Nullable
id BigInt No
mapping_type String No
detail_mapping_id String No
label_info_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No

cms_label_info_mappingUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
mapping_type String | StringFieldUpdateOperationsInput No
detail_mapping_id String | StringFieldUpdateOperationsInput No
label_info_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_label_info_mappingUncheckedUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
mapping_type String | StringFieldUpdateOperationsInput No
detail_mapping_id String | StringFieldUpdateOperationsInput No
label_info_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_label_info_mappingCreateManyInput

Name Type Nullable
id BigInt No
mapping_type String No
detail_mapping_id String No
label_info_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No

cms_label_info_mappingUpdateManyMutationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
mapping_type String | StringFieldUpdateOperationsInput No
detail_mapping_id String | StringFieldUpdateOperationsInput No
label_info_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_label_info_mappingUncheckedUpdateManyInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
mapping_type String | StringFieldUpdateOperationsInput No
detail_mapping_id String | StringFieldUpdateOperationsInput No
label_info_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_published_settingCreateInput

Name Type Nullable
id BigInt No
territory String No
published_date DateTime No
unpublished_date DateTime No
show_start_date DateTime | Null Yes
show_end_date DateTime | Null Yes
play_start_date DateTime | Null Yes
play_end_date DateTime | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
cms_resource cms_resourceCreateNestedOneWithoutCms_published_settingInput No

cms_published_settingUncheckedCreateInput

Name Type Nullable
id BigInt No
resource_id BigInt No
territory String No
published_date DateTime No
unpublished_date DateTime No
show_start_date DateTime | Null Yes
show_end_date DateTime | Null Yes
play_start_date DateTime | Null Yes
play_end_date DateTime | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_published_settingUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
published_date DateTime | DateTimeFieldUpdateOperationsInput No
unpublished_date DateTime | DateTimeFieldUpdateOperationsInput No
show_start_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
show_end_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
play_start_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
play_end_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
cms_resource cms_resourceUpdateOneRequiredWithoutCms_published_settingNestedInput No

cms_published_settingUncheckedUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
published_date DateTime | DateTimeFieldUpdateOperationsInput No
unpublished_date DateTime | DateTimeFieldUpdateOperationsInput No
show_start_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
show_end_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
play_start_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
play_end_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_published_settingCreateManyInput

Name Type Nullable
id BigInt No
resource_id BigInt No
territory String No
published_date DateTime No
unpublished_date DateTime No
show_start_date DateTime | Null Yes
show_end_date DateTime | Null Yes
play_start_date DateTime | Null Yes
play_end_date DateTime | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_published_settingUpdateManyMutationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
published_date DateTime | DateTimeFieldUpdateOperationsInput No
unpublished_date DateTime | DateTimeFieldUpdateOperationsInput No
show_start_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
show_end_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
play_start_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
play_end_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_published_settingUncheckedUpdateManyInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
published_date DateTime | DateTimeFieldUpdateOperationsInput No
unpublished_date DateTime | DateTimeFieldUpdateOperationsInput No
show_start_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
show_end_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
play_start_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
play_end_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_resourceCreateInput

Name Type Nullable
id BigInt No
key String | Null Yes
code String | Null Yes
type String No
title NullableJsonNullValueInput | Json No
channel_code String No
licensor_id BigInt No
company_id String No
territory String No
default_territory String | Null Yes
status String No
partner_resource_id String | Null Yes
published_date DateTime | Null Yes
unpublished_date DateTime | Null Yes
enable Int No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes
cms_category_mapping cms_category_mappingCreateNestedManyWithoutCms_resourceInput No
cms_hash_tag_mapping cms_hash_tag_mappingCreateNestedManyWithoutCms_resourceInput No
cms_published_setting cms_published_settingCreateNestedManyWithoutCms_resourceInput No
cms_resource_import_log cms_resource_import_logCreateNestedManyWithoutCms_resourceInput No
cms_resource_parameter cms_resource_parameterCreateNestedManyWithoutCms_resourceInput No
cms_resource_statistics cms_resource_statisticsCreateNestedManyWithoutCms_resourceInput No

cms_resourceUncheckedCreateInput

Name Type Nullable
id BigInt No
key String | Null Yes
code String | Null Yes
type String No
title NullableJsonNullValueInput | Json No
channel_code String No
licensor_id BigInt No
company_id String No
territory String No
default_territory String | Null Yes
status String No
partner_resource_id String | Null Yes
published_date DateTime | Null Yes
unpublished_date DateTime | Null Yes
enable Int No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes
cms_category_mapping cms_category_mappingUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_hash_tag_mapping cms_hash_tag_mappingUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_published_setting cms_published_settingUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_resource_import_log cms_resource_import_logUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_resource_parameter cms_resource_parameterUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_resource_statistics cms_resource_statisticsUncheckedCreateNestedManyWithoutCms_resourceInput No

cms_resourceUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
channel_code String | StringFieldUpdateOperationsInput No
licensor_id BigInt | BigIntFieldUpdateOperationsInput No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
unpublished_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
enable Int | IntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes
cms_category_mapping cms_category_mappingUpdateManyWithoutCms_resourceNestedInput No
cms_hash_tag_mapping cms_hash_tag_mappingUpdateManyWithoutCms_resourceNestedInput No
cms_published_setting cms_published_settingUpdateManyWithoutCms_resourceNestedInput No
cms_resource_import_log cms_resource_import_logUpdateManyWithoutCms_resourceNestedInput No
cms_resource_parameter cms_resource_parameterUpdateManyWithoutCms_resourceNestedInput No
cms_resource_statistics cms_resource_statisticsUpdateManyWithoutCms_resourceNestedInput No

cms_resourceUncheckedUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
channel_code String | StringFieldUpdateOperationsInput No
licensor_id BigInt | BigIntFieldUpdateOperationsInput No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
unpublished_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
enable Int | IntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes
cms_category_mapping cms_category_mappingUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_hash_tag_mapping cms_hash_tag_mappingUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_published_setting cms_published_settingUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_resource_import_log cms_resource_import_logUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_resource_parameter cms_resource_parameterUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_resource_statistics cms_resource_statisticsUncheckedUpdateManyWithoutCms_resourceNestedInput No

cms_resourceCreateManyInput

Name Type Nullable
id BigInt No
key String | Null Yes
code String | Null Yes
type String No
title NullableJsonNullValueInput | Json No
channel_code String No
licensor_id BigInt No
company_id String No
territory String No
default_territory String | Null Yes
status String No
partner_resource_id String | Null Yes
published_date DateTime | Null Yes
unpublished_date DateTime | Null Yes
enable Int No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes

cms_resourceUpdateManyMutationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
channel_code String | StringFieldUpdateOperationsInput No
licensor_id BigInt | BigIntFieldUpdateOperationsInput No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
unpublished_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
enable Int | IntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes

cms_resourceUncheckedUpdateManyInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
channel_code String | StringFieldUpdateOperationsInput No
licensor_id BigInt | BigIntFieldUpdateOperationsInput No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
unpublished_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
enable Int | IntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes

cms_resource_import_logCreateInput

Name Type Nullable
id BigInt No
partner_resource_id String | Null Yes
channel_code String | Null Yes
execute_process String No
execute_status String No
imp_result NullableJsonNullValueInput | Json No
poster_import Int No
poster_type String | Null Yes
video_import Int No
oa_task_job_id BigInt No
updated_user String No
updated_date DateTime No
cms_resource cms_resourceCreateNestedOneWithoutCms_resource_import_logInput No

cms_resource_import_logUncheckedCreateInput

Name Type Nullable
id BigInt No
partner_resource_id String | Null Yes
channel_code String | Null Yes
resource_id BigInt | Null Yes
execute_process String No
execute_status String No
imp_result NullableJsonNullValueInput | Json No
poster_import Int No
poster_type String | Null Yes
video_import Int No
oa_task_job_id BigInt No
updated_user String No
updated_date DateTime No

cms_resource_import_logUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
channel_code String | NullableStringFieldUpdateOperationsInput | Null Yes
execute_process String | StringFieldUpdateOperationsInput No
execute_status String | StringFieldUpdateOperationsInput No
imp_result NullableJsonNullValueInput | Json No
poster_import Int | IntFieldUpdateOperationsInput No
poster_type String | NullableStringFieldUpdateOperationsInput | Null Yes
video_import Int | IntFieldUpdateOperationsInput No
oa_task_job_id BigInt | BigIntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
cms_resource cms_resourceUpdateOneWithoutCms_resource_import_logNestedInput No

cms_resource_import_logUncheckedUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
channel_code String | NullableStringFieldUpdateOperationsInput | Null Yes
resource_id BigInt | NullableBigIntFieldUpdateOperationsInput | Null Yes
execute_process String | StringFieldUpdateOperationsInput No
execute_status String | StringFieldUpdateOperationsInput No
imp_result NullableJsonNullValueInput | Json No
poster_import Int | IntFieldUpdateOperationsInput No
poster_type String | NullableStringFieldUpdateOperationsInput | Null Yes
video_import Int | IntFieldUpdateOperationsInput No
oa_task_job_id BigInt | BigIntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_resource_import_logCreateManyInput

Name Type Nullable
id BigInt No
partner_resource_id String | Null Yes
channel_code String | Null Yes
resource_id BigInt | Null Yes
execute_process String No
execute_status String No
imp_result NullableJsonNullValueInput | Json No
poster_import Int No
poster_type String | Null Yes
video_import Int No
oa_task_job_id BigInt No
updated_user String No
updated_date DateTime No

cms_resource_import_logUpdateManyMutationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
channel_code String | NullableStringFieldUpdateOperationsInput | Null Yes
execute_process String | StringFieldUpdateOperationsInput No
execute_status String | StringFieldUpdateOperationsInput No
imp_result NullableJsonNullValueInput | Json No
poster_import Int | IntFieldUpdateOperationsInput No
poster_type String | NullableStringFieldUpdateOperationsInput | Null Yes
video_import Int | IntFieldUpdateOperationsInput No
oa_task_job_id BigInt | BigIntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_resource_import_logUncheckedUpdateManyInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
channel_code String | NullableStringFieldUpdateOperationsInput | Null Yes
resource_id BigInt | NullableBigIntFieldUpdateOperationsInput | Null Yes
execute_process String | StringFieldUpdateOperationsInput No
execute_status String | StringFieldUpdateOperationsInput No
imp_result NullableJsonNullValueInput | Json No
poster_import Int | IntFieldUpdateOperationsInput No
poster_type String | NullableStringFieldUpdateOperationsInput | Null Yes
video_import Int | IntFieldUpdateOperationsInput No
oa_task_job_id BigInt | BigIntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_resource_parameterCreateInput

Name Type Nullable
territory String No
master_code String | Null Yes
master_key String | Null Yes
master_type String | Null Yes
video_id String | Null Yes
duration String | Null Yes
show_direction String | Null Yes
sub_statuses NullableJsonNullValueInput | Json No
detail NullableJsonNullValueInput | Json No
description NullableJsonNullValueInput | Json No
player_info NullableJsonNullValueInput | Json No
posters NullableJsonNullValueInput | Json No
category_info NullableJsonNullValueInput | Json No
label_info NullableJsonNullValueInput | Json No
hash_tag_info NullableJsonNullValueInput | Json No
seo_info NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
artwork_status String | Null Yes
transcoding_status String | Null Yes
cms_resource cms_resourceCreateNestedOneWithoutCms_resource_parameterInput No

cms_resource_parameterUncheckedCreateInput

Name Type Nullable
resource_id BigInt No
territory String No
master_code String | Null Yes
master_key String | Null Yes
master_type String | Null Yes
video_id String | Null Yes
duration String | Null Yes
show_direction String | Null Yes
sub_statuses NullableJsonNullValueInput | Json No
detail NullableJsonNullValueInput | Json No
description NullableJsonNullValueInput | Json No
player_info NullableJsonNullValueInput | Json No
posters NullableJsonNullValueInput | Json No
category_info NullableJsonNullValueInput | Json No
label_info NullableJsonNullValueInput | Json No
hash_tag_info NullableJsonNullValueInput | Json No
seo_info NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
artwork_status String | Null Yes
transcoding_status String | Null Yes

cms_resource_parameterUpdateInput

Name Type Nullable
territory String | StringFieldUpdateOperationsInput No
master_code String | NullableStringFieldUpdateOperationsInput | Null Yes
master_key String | NullableStringFieldUpdateOperationsInput | Null Yes
master_type String | NullableStringFieldUpdateOperationsInput | Null Yes
video_id String | NullableStringFieldUpdateOperationsInput | Null Yes
duration String | NullableStringFieldUpdateOperationsInput | Null Yes
show_direction String | NullableStringFieldUpdateOperationsInput | Null Yes
sub_statuses NullableJsonNullValueInput | Json No
detail NullableJsonNullValueInput | Json No
description NullableJsonNullValueInput | Json No
player_info NullableJsonNullValueInput | Json No
posters NullableJsonNullValueInput | Json No
category_info NullableJsonNullValueInput | Json No
label_info NullableJsonNullValueInput | Json No
hash_tag_info NullableJsonNullValueInput | Json No
seo_info NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
artwork_status String | NullableStringFieldUpdateOperationsInput | Null Yes
transcoding_status String | NullableStringFieldUpdateOperationsInput | Null Yes
cms_resource cms_resourceUpdateOneRequiredWithoutCms_resource_parameterNestedInput No

cms_resource_parameterUncheckedUpdateInput

Name Type Nullable
resource_id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
master_code String | NullableStringFieldUpdateOperationsInput | Null Yes
master_key String | NullableStringFieldUpdateOperationsInput | Null Yes
master_type String | NullableStringFieldUpdateOperationsInput | Null Yes
video_id String | NullableStringFieldUpdateOperationsInput | Null Yes
duration String | NullableStringFieldUpdateOperationsInput | Null Yes
show_direction String | NullableStringFieldUpdateOperationsInput | Null Yes
sub_statuses NullableJsonNullValueInput | Json No
detail NullableJsonNullValueInput | Json No
description NullableJsonNullValueInput | Json No
player_info NullableJsonNullValueInput | Json No
posters NullableJsonNullValueInput | Json No
category_info NullableJsonNullValueInput | Json No
label_info NullableJsonNullValueInput | Json No
hash_tag_info NullableJsonNullValueInput | Json No
seo_info NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
artwork_status String | NullableStringFieldUpdateOperationsInput | Null Yes
transcoding_status String | NullableStringFieldUpdateOperationsInput | Null Yes

cms_resource_parameterCreateManyInput

Name Type Nullable
resource_id BigInt No
territory String No
master_code String | Null Yes
master_key String | Null Yes
master_type String | Null Yes
video_id String | Null Yes
duration String | Null Yes
show_direction String | Null Yes
sub_statuses NullableJsonNullValueInput | Json No
detail NullableJsonNullValueInput | Json No
description NullableJsonNullValueInput | Json No
player_info NullableJsonNullValueInput | Json No
posters NullableJsonNullValueInput | Json No
category_info NullableJsonNullValueInput | Json No
label_info NullableJsonNullValueInput | Json No
hash_tag_info NullableJsonNullValueInput | Json No
seo_info NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
artwork_status String | Null Yes
transcoding_status String | Null Yes

cms_resource_parameterUpdateManyMutationInput

Name Type Nullable
territory String | StringFieldUpdateOperationsInput No
master_code String | NullableStringFieldUpdateOperationsInput | Null Yes
master_key String | NullableStringFieldUpdateOperationsInput | Null Yes
master_type String | NullableStringFieldUpdateOperationsInput | Null Yes
video_id String | NullableStringFieldUpdateOperationsInput | Null Yes
duration String | NullableStringFieldUpdateOperationsInput | Null Yes
show_direction String | NullableStringFieldUpdateOperationsInput | Null Yes
sub_statuses NullableJsonNullValueInput | Json No
detail NullableJsonNullValueInput | Json No
description NullableJsonNullValueInput | Json No
player_info NullableJsonNullValueInput | Json No
posters NullableJsonNullValueInput | Json No
category_info NullableJsonNullValueInput | Json No
label_info NullableJsonNullValueInput | Json No
hash_tag_info NullableJsonNullValueInput | Json No
seo_info NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
artwork_status String | NullableStringFieldUpdateOperationsInput | Null Yes
transcoding_status String | NullableStringFieldUpdateOperationsInput | Null Yes

cms_resource_parameterUncheckedUpdateManyInput

Name Type Nullable
resource_id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
master_code String | NullableStringFieldUpdateOperationsInput | Null Yes
master_key String | NullableStringFieldUpdateOperationsInput | Null Yes
master_type String | NullableStringFieldUpdateOperationsInput | Null Yes
video_id String | NullableStringFieldUpdateOperationsInput | Null Yes
duration String | NullableStringFieldUpdateOperationsInput | Null Yes
show_direction String | NullableStringFieldUpdateOperationsInput | Null Yes
sub_statuses NullableJsonNullValueInput | Json No
detail NullableJsonNullValueInput | Json No
description NullableJsonNullValueInput | Json No
player_info NullableJsonNullValueInput | Json No
posters NullableJsonNullValueInput | Json No
category_info NullableJsonNullValueInput | Json No
label_info NullableJsonNullValueInput | Json No
hash_tag_info NullableJsonNullValueInput | Json No
seo_info NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
artwork_status String | NullableStringFieldUpdateOperationsInput | Null Yes
transcoding_status String | NullableStringFieldUpdateOperationsInput | Null Yes

cms_resource_statisticsCreateInput

Name Type Nullable
territory String No
statistics NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
cms_resource cms_resourceCreateNestedOneWithoutCms_resource_statisticsInput No

cms_resource_statisticsUncheckedCreateInput

Name Type Nullable
resource_id BigInt No
territory String No
statistics NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_resource_statisticsUpdateInput

Name Type Nullable
territory String | StringFieldUpdateOperationsInput No
statistics NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
cms_resource cms_resourceUpdateOneRequiredWithoutCms_resource_statisticsNestedInput No

cms_resource_statisticsUncheckedUpdateInput

Name Type Nullable
resource_id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
statistics NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_resource_statisticsCreateManyInput

Name Type Nullable
resource_id BigInt No
territory String No
statistics NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_resource_statisticsUpdateManyMutationInput

Name Type Nullable
territory String | StringFieldUpdateOperationsInput No
statistics NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_resource_statisticsUncheckedUpdateManyInput

Name Type Nullable
resource_id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
statistics NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

oa_change_logsCreateInput

Name Type Nullable
id BigInt No
territory String No
function_name String No
mapping_id String No
sub_function_name String | Null Yes
sub_mapping_id String | Null Yes
comment String No
action String No
before NullableJsonNullValueInput | Json No
after NullableJsonNullValueInput | Json No
jira_no String | Null Yes
updated_user String No
updated_date DateTime No

oa_change_logsUncheckedCreateInput

Name Type Nullable
id BigInt No
territory String No
function_name String No
mapping_id String No
sub_function_name String | Null Yes
sub_mapping_id String | Null Yes
comment String No
action String No
before NullableJsonNullValueInput | Json No
after NullableJsonNullValueInput | Json No
jira_no String | Null Yes
updated_user String No
updated_date DateTime No

oa_change_logsUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
function_name String | StringFieldUpdateOperationsInput No
mapping_id String | StringFieldUpdateOperationsInput No
sub_function_name String | NullableStringFieldUpdateOperationsInput | Null Yes
sub_mapping_id String | NullableStringFieldUpdateOperationsInput | Null Yes
comment String | StringFieldUpdateOperationsInput No
action String | StringFieldUpdateOperationsInput No
before NullableJsonNullValueInput | Json No
after NullableJsonNullValueInput | Json No
jira_no String | NullableStringFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

oa_change_logsUncheckedUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
function_name String | StringFieldUpdateOperationsInput No
mapping_id String | StringFieldUpdateOperationsInput No
sub_function_name String | NullableStringFieldUpdateOperationsInput | Null Yes
sub_mapping_id String | NullableStringFieldUpdateOperationsInput | Null Yes
comment String | StringFieldUpdateOperationsInput No
action String | StringFieldUpdateOperationsInput No
before NullableJsonNullValueInput | Json No
after NullableJsonNullValueInput | Json No
jira_no String | NullableStringFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

oa_change_logsCreateManyInput

Name Type Nullable
id BigInt No
territory String No
function_name String No
mapping_id String No
sub_function_name String | Null Yes
sub_mapping_id String | Null Yes
comment String No
action String No
before NullableJsonNullValueInput | Json No
after NullableJsonNullValueInput | Json No
jira_no String | Null Yes
updated_user String No
updated_date DateTime No

oa_change_logsUpdateManyMutationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
function_name String | StringFieldUpdateOperationsInput No
mapping_id String | StringFieldUpdateOperationsInput No
sub_function_name String | NullableStringFieldUpdateOperationsInput | Null Yes
sub_mapping_id String | NullableStringFieldUpdateOperationsInput | Null Yes
comment String | StringFieldUpdateOperationsInput No
action String | StringFieldUpdateOperationsInput No
before NullableJsonNullValueInput | Json No
after NullableJsonNullValueInput | Json No
jira_no String | NullableStringFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

oa_change_logsUncheckedUpdateManyInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
function_name String | StringFieldUpdateOperationsInput No
mapping_id String | StringFieldUpdateOperationsInput No
sub_function_name String | NullableStringFieldUpdateOperationsInput | Null Yes
sub_mapping_id String | NullableStringFieldUpdateOperationsInput | Null Yes
comment String | StringFieldUpdateOperationsInput No
action String | StringFieldUpdateOperationsInput No
before NullableJsonNullValueInput | Json No
after NullableJsonNullValueInput | Json No
jira_no String | NullableStringFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

oa_licensorCreateInput

Name Type Nullable
id BigInt No
licensor_key String No
code String | Null Yes
company_name String | Null Yes
category String | Null Yes
contact_name String | Null Yes
contact_phone String | Null Yes
contact_email String | Null Yes
contact_mobile String | Null Yes
s3_bucket_name String | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No

oa_licensorUncheckedCreateInput

Name Type Nullable
id BigInt No
licensor_key String No
code String | Null Yes
company_name String | Null Yes
category String | Null Yes
contact_name String | Null Yes
contact_phone String | Null Yes
contact_email String | Null Yes
contact_mobile String | Null Yes
s3_bucket_name String | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No

oa_licensorUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
licensor_key String | StringFieldUpdateOperationsInput No
code String | NullableStringFieldUpdateOperationsInput | Null Yes
company_name String | NullableStringFieldUpdateOperationsInput | Null Yes
category String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_name String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_phone String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_email String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_mobile String | NullableStringFieldUpdateOperationsInput | Null Yes
s3_bucket_name String | NullableStringFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

oa_licensorUncheckedUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
licensor_key String | StringFieldUpdateOperationsInput No
code String | NullableStringFieldUpdateOperationsInput | Null Yes
company_name String | NullableStringFieldUpdateOperationsInput | Null Yes
category String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_name String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_phone String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_email String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_mobile String | NullableStringFieldUpdateOperationsInput | Null Yes
s3_bucket_name String | NullableStringFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

oa_licensorCreateManyInput

Name Type Nullable
id BigInt No
licensor_key String No
code String | Null Yes
company_name String | Null Yes
category String | Null Yes
contact_name String | Null Yes
contact_phone String | Null Yes
contact_email String | Null Yes
contact_mobile String | Null Yes
s3_bucket_name String | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No

oa_licensorUpdateManyMutationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
licensor_key String | StringFieldUpdateOperationsInput No
code String | NullableStringFieldUpdateOperationsInput | Null Yes
company_name String | NullableStringFieldUpdateOperationsInput | Null Yes
category String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_name String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_phone String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_email String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_mobile String | NullableStringFieldUpdateOperationsInput | Null Yes
s3_bucket_name String | NullableStringFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

oa_licensorUncheckedUpdateManyInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
licensor_key String | StringFieldUpdateOperationsInput No
code String | NullableStringFieldUpdateOperationsInput | Null Yes
company_name String | NullableStringFieldUpdateOperationsInput | Null Yes
category String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_name String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_phone String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_email String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_mobile String | NullableStringFieldUpdateOperationsInput | Null Yes
s3_bucket_name String | NullableStringFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

oa_system_codeCreateInput

Name Type Nullable
code_type String No
territory String No
code_type_name NullableJsonNullValueInput | Json No
show_sequence Int No
used_flag Boolean No
up_level_type String | Null Yes
memo String | Null Yes
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No
code_type_name_local String | Null Yes
code_type_name_eng String | Null Yes

oa_system_codeUncheckedCreateInput

Name Type Nullable
code_type String No
territory String No
code_type_name NullableJsonNullValueInput | Json No
show_sequence Int No
used_flag Boolean No
up_level_type String | Null Yes
memo String | Null Yes
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No
code_type_name_local String | Null Yes
code_type_name_eng String | Null Yes

oa_system_codeUpdateInput

Name Type Nullable
code_type String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
code_type_name NullableJsonNullValueInput | Json No
show_sequence Int | IntFieldUpdateOperationsInput No
used_flag Boolean | BoolFieldUpdateOperationsInput No
up_level_type String | NullableStringFieldUpdateOperationsInput | Null Yes
memo String | NullableStringFieldUpdateOperationsInput | Null Yes
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
code_type_name_local String | NullableStringFieldUpdateOperationsInput | Null Yes
code_type_name_eng String | NullableStringFieldUpdateOperationsInput | Null Yes

oa_system_codeUncheckedUpdateInput

Name Type Nullable
code_type String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
code_type_name NullableJsonNullValueInput | Json No
show_sequence Int | IntFieldUpdateOperationsInput No
used_flag Boolean | BoolFieldUpdateOperationsInput No
up_level_type String | NullableStringFieldUpdateOperationsInput | Null Yes
memo String | NullableStringFieldUpdateOperationsInput | Null Yes
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
code_type_name_local String | NullableStringFieldUpdateOperationsInput | Null Yes
code_type_name_eng String | NullableStringFieldUpdateOperationsInput | Null Yes

oa_system_codeCreateManyInput

Name Type Nullable
code_type String No
territory String No
code_type_name NullableJsonNullValueInput | Json No
show_sequence Int No
used_flag Boolean No
up_level_type String | Null Yes
memo String | Null Yes
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No
code_type_name_local String | Null Yes
code_type_name_eng String | Null Yes

oa_system_codeUpdateManyMutationInput

Name Type Nullable
code_type String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
code_type_name NullableJsonNullValueInput | Json No
show_sequence Int | IntFieldUpdateOperationsInput No
used_flag Boolean | BoolFieldUpdateOperationsInput No
up_level_type String | NullableStringFieldUpdateOperationsInput | Null Yes
memo String | NullableStringFieldUpdateOperationsInput | Null Yes
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
code_type_name_local String | NullableStringFieldUpdateOperationsInput | Null Yes
code_type_name_eng String | NullableStringFieldUpdateOperationsInput | Null Yes

oa_system_codeUncheckedUpdateManyInput

Name Type Nullable
code_type String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
code_type_name NullableJsonNullValueInput | Json No
show_sequence Int | IntFieldUpdateOperationsInput No
used_flag Boolean | BoolFieldUpdateOperationsInput No
up_level_type String | NullableStringFieldUpdateOperationsInput | Null Yes
memo String | NullableStringFieldUpdateOperationsInput | Null Yes
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
code_type_name_local String | NullableStringFieldUpdateOperationsInput | Null Yes
code_type_name_eng String | NullableStringFieldUpdateOperationsInput | Null Yes

oa_system_code_detailCreateInput

Name Type Nullable
id BigInt No
code_type String No
territory String No
code String No
code_group String | Null Yes
value_type String | Null Yes
code_name NullableJsonNullValueInput | Json No
code_parameter NullableJsonNullValueInput | Json No
show_sequence Int No
used_flag Boolean No
up_level_type String | Null Yes
memo String | Null Yes
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No
code_name_local String | Null Yes
code_name_eng String | Null Yes

oa_system_code_detailUncheckedCreateInput

Name Type Nullable
id BigInt No
code_type String No
territory String No
code String No
code_group String | Null Yes
value_type String | Null Yes
code_name NullableJsonNullValueInput | Json No
code_parameter NullableJsonNullValueInput | Json No
show_sequence Int No
used_flag Boolean No
up_level_type String | Null Yes
memo String | Null Yes
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No
code_name_local String | Null Yes
code_name_eng String | Null Yes

oa_system_code_detailUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
code_type String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
code_group String | NullableStringFieldUpdateOperationsInput | Null Yes
value_type String | NullableStringFieldUpdateOperationsInput | Null Yes
code_name NullableJsonNullValueInput | Json No
code_parameter NullableJsonNullValueInput | Json No
show_sequence Int | IntFieldUpdateOperationsInput No
used_flag Boolean | BoolFieldUpdateOperationsInput No
up_level_type String | NullableStringFieldUpdateOperationsInput | Null Yes
memo String | NullableStringFieldUpdateOperationsInput | Null Yes
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
code_name_local String | NullableStringFieldUpdateOperationsInput | Null Yes
code_name_eng String | NullableStringFieldUpdateOperationsInput | Null Yes

oa_system_code_detailUncheckedUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
code_type String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
code_group String | NullableStringFieldUpdateOperationsInput | Null Yes
value_type String | NullableStringFieldUpdateOperationsInput | Null Yes
code_name NullableJsonNullValueInput | Json No
code_parameter NullableJsonNullValueInput | Json No
show_sequence Int | IntFieldUpdateOperationsInput No
used_flag Boolean | BoolFieldUpdateOperationsInput No
up_level_type String | NullableStringFieldUpdateOperationsInput | Null Yes
memo String | NullableStringFieldUpdateOperationsInput | Null Yes
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
code_name_local String | NullableStringFieldUpdateOperationsInput | Null Yes
code_name_eng String | NullableStringFieldUpdateOperationsInput | Null Yes

oa_system_code_detailCreateManyInput

Name Type Nullable
id BigInt No
code_type String No
territory String No
code String No
code_group String | Null Yes
value_type String | Null Yes
code_name NullableJsonNullValueInput | Json No
code_parameter NullableJsonNullValueInput | Json No
show_sequence Int No
used_flag Boolean No
up_level_type String | Null Yes
memo String | Null Yes
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No
code_name_local String | Null Yes
code_name_eng String | Null Yes

oa_system_code_detailUpdateManyMutationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
code_type String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
code_group String | NullableStringFieldUpdateOperationsInput | Null Yes
value_type String | NullableStringFieldUpdateOperationsInput | Null Yes
code_name NullableJsonNullValueInput | Json No
code_parameter NullableJsonNullValueInput | Json No
show_sequence Int | IntFieldUpdateOperationsInput No
used_flag Boolean | BoolFieldUpdateOperationsInput No
up_level_type String | NullableStringFieldUpdateOperationsInput | Null Yes
memo String | NullableStringFieldUpdateOperationsInput | Null Yes
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
code_name_local String | NullableStringFieldUpdateOperationsInput | Null Yes
code_name_eng String | NullableStringFieldUpdateOperationsInput | Null Yes

oa_system_code_detailUncheckedUpdateManyInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
code_type String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
code_group String | NullableStringFieldUpdateOperationsInput | Null Yes
value_type String | NullableStringFieldUpdateOperationsInput | Null Yes
code_name NullableJsonNullValueInput | Json No
code_parameter NullableJsonNullValueInput | Json No
show_sequence Int | IntFieldUpdateOperationsInput No
used_flag Boolean | BoolFieldUpdateOperationsInput No
up_level_type String | NullableStringFieldUpdateOperationsInput | Null Yes
memo String | NullableStringFieldUpdateOperationsInput | Null Yes
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
code_name_local String | NullableStringFieldUpdateOperationsInput | Null Yes
code_name_eng String | NullableStringFieldUpdateOperationsInput | Null Yes

oa_task_jobCreateInput

Name Type Nullable
id BigInt No
task_label String No
job_name String No
task_name String No
task_target String No
execution_time DateTime | Null Yes
execution_script String | Null Yes
execution_log NullableJsonNullValueInput | Json No
executed Int No
exec_start_date DateTime | Null Yes
exec_end_date DateTime | Null Yes
enable Int No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

oa_task_jobUncheckedCreateInput

Name Type Nullable
id BigInt No
task_label String No
job_name String No
task_name String No
task_target String No
execution_time DateTime | Null Yes
execution_script String | Null Yes
execution_log NullableJsonNullValueInput | Json No
executed Int No
exec_start_date DateTime | Null Yes
exec_end_date DateTime | Null Yes
enable Int No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

oa_task_jobUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
task_label String | StringFieldUpdateOperationsInput No
job_name String | StringFieldUpdateOperationsInput No
task_name String | StringFieldUpdateOperationsInput No
task_target String | StringFieldUpdateOperationsInput No
execution_time DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
execution_script String | NullableStringFieldUpdateOperationsInput | Null Yes
execution_log NullableJsonNullValueInput | Json No
executed Int | IntFieldUpdateOperationsInput No
exec_start_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
exec_end_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
enable Int | IntFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

oa_task_jobUncheckedUpdateInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
task_label String | StringFieldUpdateOperationsInput No
job_name String | StringFieldUpdateOperationsInput No
task_name String | StringFieldUpdateOperationsInput No
task_target String | StringFieldUpdateOperationsInput No
execution_time DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
execution_script String | NullableStringFieldUpdateOperationsInput | Null Yes
execution_log NullableJsonNullValueInput | Json No
executed Int | IntFieldUpdateOperationsInput No
exec_start_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
exec_end_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
enable Int | IntFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

oa_task_jobCreateManyInput

Name Type Nullable
id BigInt No
task_label String No
job_name String No
task_name String No
task_target String No
execution_time DateTime | Null Yes
execution_script String | Null Yes
execution_log NullableJsonNullValueInput | Json No
executed Int No
exec_start_date DateTime | Null Yes
exec_end_date DateTime | Null Yes
enable Int No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

oa_task_jobUpdateManyMutationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
task_label String | StringFieldUpdateOperationsInput No
job_name String | StringFieldUpdateOperationsInput No
task_name String | StringFieldUpdateOperationsInput No
task_target String | StringFieldUpdateOperationsInput No
execution_time DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
execution_script String | NullableStringFieldUpdateOperationsInput | Null Yes
execution_log NullableJsonNullValueInput | Json No
executed Int | IntFieldUpdateOperationsInput No
exec_start_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
exec_end_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
enable Int | IntFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

oa_task_jobUncheckedUpdateManyInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
task_label String | StringFieldUpdateOperationsInput No
job_name String | StringFieldUpdateOperationsInput No
task_name String | StringFieldUpdateOperationsInput No
task_target String | StringFieldUpdateOperationsInput No
execution_time DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
execution_script String | NullableStringFieldUpdateOperationsInput | Null Yes
execution_log NullableJsonNullValueInput | Json No
executed Int | IntFieldUpdateOperationsInput No
exec_start_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
exec_end_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
enable Int | IntFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

oa_territoryCreateInput

Name Type Nullable
id String No
code String No
title String | Null Yes
default_territory String No
language String No
default_language String No
timezone String | Null Yes
priority Int | Null Yes
updated_user String No
updated_date DateTime No

oa_territoryUncheckedCreateInput

Name Type Nullable
id String No
code String No
title String | Null Yes
default_territory String No
language String No
default_language String No
timezone String | Null Yes
priority Int | Null Yes
updated_user String No
updated_date DateTime No

oa_territoryUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
default_territory String | StringFieldUpdateOperationsInput No
language String | StringFieldUpdateOperationsInput No
default_language String | StringFieldUpdateOperationsInput No
timezone String | NullableStringFieldUpdateOperationsInput | Null Yes
priority Int | NullableIntFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

oa_territoryUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
default_territory String | StringFieldUpdateOperationsInput No
language String | StringFieldUpdateOperationsInput No
default_language String | StringFieldUpdateOperationsInput No
timezone String | NullableStringFieldUpdateOperationsInput | Null Yes
priority Int | NullableIntFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

oa_territoryCreateManyInput

Name Type Nullable
id String No
code String No
title String | Null Yes
default_territory String No
language String No
default_language String No
timezone String | Null Yes
priority Int | Null Yes
updated_user String No
updated_date DateTime No

oa_territoryUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
default_territory String | StringFieldUpdateOperationsInput No
language String | StringFieldUpdateOperationsInput No
default_language String | StringFieldUpdateOperationsInput No
timezone String | NullableStringFieldUpdateOperationsInput | Null Yes
priority Int | NullableIntFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

oa_territoryUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
default_territory String | StringFieldUpdateOperationsInput No
language String | StringFieldUpdateOperationsInput No
default_language String | StringFieldUpdateOperationsInput No
timezone String | NullableStringFieldUpdateOperationsInput | Null Yes
priority Int | NullableIntFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

system_functionCreateInput

Name Type Nullable
id String No
menu_id String No
name String No
show_name String No
icon String | Null Yes
type String No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

system_functionUncheckedCreateInput

Name Type Nullable
id String No
menu_id String No
name String No
show_name String No
icon String | Null Yes
type String No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

system_functionUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
menu_id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
show_name String | StringFieldUpdateOperationsInput No
icon String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

system_functionUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
menu_id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
show_name String | StringFieldUpdateOperationsInput No
icon String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

system_functionCreateManyInput

Name Type Nullable
id String No
menu_id String No
name String No
show_name String No
icon String | Null Yes
type String No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

system_functionUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
menu_id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
show_name String | StringFieldUpdateOperationsInput No
icon String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

system_functionUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
menu_id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
show_name String | StringFieldUpdateOperationsInput No
icon String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

system_menuCreateInput

Name Type Nullable
id String No
cascade_id String | Null Yes
name String No
pathname String No
icon String | Null Yes
show_in_menu Boolean No
is_web_page Boolean No
is_need_login Boolean No
parent_id String | Null Yes
table_memo String | Null Yes
sort Int No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

system_menuUncheckedCreateInput

Name Type Nullable
id String No
cascade_id String | Null Yes
name String No
pathname String No
icon String | Null Yes
show_in_menu Boolean No
is_web_page Boolean No
is_need_login Boolean No
parent_id String | Null Yes
table_memo String | Null Yes
sort Int No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

system_menuUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
cascade_id String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
pathname String | StringFieldUpdateOperationsInput No
icon String | NullableStringFieldUpdateOperationsInput | Null Yes
show_in_menu Boolean | BoolFieldUpdateOperationsInput No
is_web_page Boolean | BoolFieldUpdateOperationsInput No
is_need_login Boolean | BoolFieldUpdateOperationsInput No
parent_id String | NullableStringFieldUpdateOperationsInput | Null Yes
table_memo String | NullableStringFieldUpdateOperationsInput | Null Yes
sort Int | IntFieldUpdateOperationsInput No
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

system_menuUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
cascade_id String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
pathname String | StringFieldUpdateOperationsInput No
icon String | NullableStringFieldUpdateOperationsInput | Null Yes
show_in_menu Boolean | BoolFieldUpdateOperationsInput No
is_web_page Boolean | BoolFieldUpdateOperationsInput No
is_need_login Boolean | BoolFieldUpdateOperationsInput No
parent_id String | NullableStringFieldUpdateOperationsInput | Null Yes
table_memo String | NullableStringFieldUpdateOperationsInput | Null Yes
sort Int | IntFieldUpdateOperationsInput No
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

system_menuCreateManyInput

Name Type Nullable
id String No
cascade_id String | Null Yes
name String No
pathname String No
icon String | Null Yes
show_in_menu Boolean No
is_web_page Boolean No
is_need_login Boolean No
parent_id String | Null Yes
table_memo String | Null Yes
sort Int No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

system_menuUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
cascade_id String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
pathname String | StringFieldUpdateOperationsInput No
icon String | NullableStringFieldUpdateOperationsInput | Null Yes
show_in_menu Boolean | BoolFieldUpdateOperationsInput No
is_web_page Boolean | BoolFieldUpdateOperationsInput No
is_need_login Boolean | BoolFieldUpdateOperationsInput No
parent_id String | NullableStringFieldUpdateOperationsInput | Null Yes
table_memo String | NullableStringFieldUpdateOperationsInput | Null Yes
sort Int | IntFieldUpdateOperationsInput No
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

system_menuUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
cascade_id String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
pathname String | StringFieldUpdateOperationsInput No
icon String | NullableStringFieldUpdateOperationsInput | Null Yes
show_in_menu Boolean | BoolFieldUpdateOperationsInput No
is_web_page Boolean | BoolFieldUpdateOperationsInput No
is_need_login Boolean | BoolFieldUpdateOperationsInput No
parent_id String | NullableStringFieldUpdateOperationsInput | Null Yes
table_memo String | NullableStringFieldUpdateOperationsInput | Null Yes
sort Int | IntFieldUpdateOperationsInput No
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

system_relevanceCreateInput

Name Type Nullable
id String No
memo String | Null Yes
type String No
first_id String No
second_id String No
third_id String | Null Yes
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

system_relevanceUncheckedCreateInput

Name Type Nullable
id String No
memo String | Null Yes
type String No
first_id String No
second_id String No
third_id String | Null Yes
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

system_relevanceUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
memo String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
first_id String | StringFieldUpdateOperationsInput No
second_id String | StringFieldUpdateOperationsInput No
third_id String | NullableStringFieldUpdateOperationsInput | Null Yes
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

system_relevanceUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
memo String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
first_id String | StringFieldUpdateOperationsInput No
second_id String | StringFieldUpdateOperationsInput No
third_id String | NullableStringFieldUpdateOperationsInput | Null Yes
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

system_relevanceCreateManyInput

Name Type Nullable
id String No
memo String | Null Yes
type String No
first_id String No
second_id String No
third_id String | Null Yes
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

system_relevanceUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
memo String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
first_id String | StringFieldUpdateOperationsInput No
second_id String | StringFieldUpdateOperationsInput No
third_id String | NullableStringFieldUpdateOperationsInput | Null Yes
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

system_relevanceUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
memo String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
first_id String | StringFieldUpdateOperationsInput No
second_id String | StringFieldUpdateOperationsInput No
third_id String | NullableStringFieldUpdateOperationsInput | Null Yes
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

system_roleCreateInput

Name Type Nullable
id String No
code String No
name String No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

system_roleUncheckedCreateInput

Name Type Nullable
id String No
code String No
name String No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

system_roleUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

system_roleUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

system_roleCreateManyInput

Name Type Nullable
id String No
code String No
name String No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

system_roleUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

system_roleUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

system_userCreateInput

Name Type Nullable
id String No
provider_id String No
provider String No
display_name String No
family_name String No
given_name String No
email String No
email_verified Boolean | Null Yes
password String No
language String No
locale String | Null Yes
picture String | Null Yes
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

system_userUncheckedCreateInput

Name Type Nullable
id String No
provider_id String No
provider String No
display_name String No
family_name String No
given_name String No
email String No
email_verified Boolean | Null Yes
password String No
language String No
locale String | Null Yes
picture String | Null Yes
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

system_userUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
provider_id String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
display_name String | StringFieldUpdateOperationsInput No
family_name String | StringFieldUpdateOperationsInput No
given_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
email_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password String | StringFieldUpdateOperationsInput No
language String | StringFieldUpdateOperationsInput No
locale String | NullableStringFieldUpdateOperationsInput | Null Yes
picture String | NullableStringFieldUpdateOperationsInput | Null Yes
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

system_userUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
provider_id String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
display_name String | StringFieldUpdateOperationsInput No
family_name String | StringFieldUpdateOperationsInput No
given_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
email_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password String | StringFieldUpdateOperationsInput No
language String | StringFieldUpdateOperationsInput No
locale String | NullableStringFieldUpdateOperationsInput | Null Yes
picture String | NullableStringFieldUpdateOperationsInput | Null Yes
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

system_userCreateManyInput

Name Type Nullable
id String No
provider_id String No
provider String No
display_name String No
family_name String No
given_name String No
email String No
email_verified Boolean | Null Yes
password String No
language String No
locale String | Null Yes
picture String | Null Yes
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

system_userUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
provider_id String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
display_name String | StringFieldUpdateOperationsInput No
family_name String | StringFieldUpdateOperationsInput No
given_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
email_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password String | StringFieldUpdateOperationsInput No
language String | StringFieldUpdateOperationsInput No
locale String | NullableStringFieldUpdateOperationsInput | Null Yes
picture String | NullableStringFieldUpdateOperationsInput | Null Yes
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

system_userUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
provider_id String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
display_name String | StringFieldUpdateOperationsInput No
family_name String | StringFieldUpdateOperationsInput No
given_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
email_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password String | StringFieldUpdateOperationsInput No
language String | StringFieldUpdateOperationsInput No
locale String | NullableStringFieldUpdateOperationsInput | Null Yes
picture String | NullableStringFieldUpdateOperationsInput | Null Yes
enable Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

AccountCreateInput

Name Type Nullable
id String No
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes
user UserCreateNestedOneWithoutAccountsInput No

AccountUncheckedCreateInput

Name Type Nullable
id String No
userId String No
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes

AccountUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
user UserUpdateOneRequiredWithoutAccountsNestedInput No

AccountUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes

AccountCreateManyInput

Name Type Nullable
id String No
userId String No
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes

AccountUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes

AccountUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes

SessionCreateInput

Name Type Nullable
id String No
sessionToken String No
expires DateTime No
user UserCreateNestedOneWithoutSessionsInput No

SessionUncheckedCreateInput

Name Type Nullable
id String No
sessionToken String No
userId String No
expires DateTime No

SessionUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutSessionsNestedInput No

SessionUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

SessionCreateManyInput

Name Type Nullable
id String No
sessionToken String No
userId String No
expires DateTime No

SessionUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

SessionUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

UserCreateInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No

UserUncheckedCreateInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No

UserUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No

UserCreateManyInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes

UserUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes

UserUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes

VerificationTokenCreateInput

Name Type Nullable
identifier String No
token String No
expires DateTime No

VerificationTokenUncheckedCreateInput

Name Type Nullable
identifier String No
token String No
expires DateTime No

VerificationTokenUpdateInput

Name Type Nullable
identifier String | StringFieldUpdateOperationsInput No
token String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

VerificationTokenUncheckedUpdateInput

Name Type Nullable
identifier String | StringFieldUpdateOperationsInput No
token String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

VerificationTokenCreateManyInput

Name Type Nullable
identifier String No
token String No
expires DateTime No

VerificationTokenUpdateManyMutationInput

Name Type Nullable
identifier String | StringFieldUpdateOperationsInput No
token String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

VerificationTokenUncheckedUpdateManyInput

Name Type Nullable
identifier String | StringFieldUpdateOperationsInput No
token String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

BigIntFilter

Name Type Nullable
equals BigInt | BigIntFieldRefInput No
in BigInt[] No
notIn BigInt[] No
lt BigInt | BigIntFieldRefInput No
lte BigInt | BigIntFieldRefInput No
gt BigInt | BigIntFieldRefInput No
gte BigInt | BigIntFieldRefInput No
not BigInt | NestedBigIntFilter No

StringFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String No
notIn String No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringFilter No

JsonNullableFilter

Name Type Nullable
equals Json | JsonFieldRefInput | JsonNullValueFilter No
path String No
string_contains String | StringFieldRefInput No
string_starts_with String | StringFieldRefInput No
string_ends_with String | StringFieldRefInput No
array_contains Json | JsonFieldRefInput | Null Yes
array_starts_with Json | JsonFieldRefInput | Null Yes
array_ends_with Json | JsonFieldRefInput | Null Yes
lt Json No
lte Json No
gt Json No
gte Json No
not Json | JsonFieldRefInput | JsonNullValueFilter No

BoolFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolFilter No

IntNullableFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableFilter | Null Yes

DateTimeFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime No
notIn DateTime No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeFilter No

Cms_category_mappingListRelationFilter

Name Type Nullable
every cms_category_mappingWhereInput No
some cms_category_mappingWhereInput No
none cms_category_mappingWhereInput No

SortOrderInput

Name Type Nullable
sort SortOrder No
nulls NullsOrder No

cms_category_mappingOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

cms_categoryTerritoryKeyCodeCompoundUniqueInput

Name Type Nullable
territory String No
key String No
code String No

cms_categoryCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
territory SortOrder No
key SortOrder No
code SortOrder No
title SortOrder No
on_used SortOrder No
sequence SortOrder No
statistics SortOrder No
parameter_values SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_categoryAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
sequence SortOrder No

cms_categoryMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
territory SortOrder No
key SortOrder No
code SortOrder No
on_used SortOrder No
sequence SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_categoryMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
territory SortOrder No
key SortOrder No
code SortOrder No
on_used SortOrder No
sequence SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_categorySumOrderByAggregateInput

Name Type Nullable
id SortOrder No
sequence SortOrder No

BigIntWithAggregatesFilter

Name Type Nullable
equals BigInt | BigIntFieldRefInput No
in BigInt[] No
notIn BigInt[] No
lt BigInt | BigIntFieldRefInput No
lte BigInt | BigIntFieldRefInput No
gt BigInt | BigIntFieldRefInput No
gte BigInt | BigIntFieldRefInput No
not BigInt | NestedBigIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedBigIntFilter No
_min NestedBigIntFilter No
_max NestedBigIntFilter No

StringWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String No
notIn String No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

JsonNullableWithAggregatesFilter

Name Type Nullable
equals Json | JsonFieldRefInput | JsonNullValueFilter No
path String No
string_contains String | StringFieldRefInput No
string_starts_with String | StringFieldRefInput No
string_ends_with String | StringFieldRefInput No
array_contains Json | JsonFieldRefInput | Null Yes
array_starts_with Json | JsonFieldRefInput | Null Yes
array_ends_with Json | JsonFieldRefInput | Null Yes
lt Json No
lte Json No
gt Json No
gte Json No
not Json | JsonFieldRefInput | JsonNullValueFilter No
_count NestedIntNullableFilter No
_min NestedJsonNullableFilter No
_max NestedJsonNullableFilter No

BoolWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

IntNullableWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

DateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime No
notIn DateTime No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

BoolNullableFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput | Null Yes
not Boolean | NestedBoolNullableFilter | Null Yes

Cms_categoryRelationFilter

Name Type Nullable
is cms_categoryWhereInput No
isNot cms_categoryWhereInput No

Cms_resourceRelationFilter

Name Type Nullable
is cms_resourceWhereInput No
isNot cms_resourceWhereInput No

cms_category_mappingResource_idCategory_idCompoundUniqueInput

Name Type Nullable
resource_id BigInt No
category_id BigInt No

cms_category_mappingIdResource_idCompoundUniqueInput

Name Type Nullable
id BigInt No
resource_id BigInt No

cms_category_mappingCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
category_id SortOrder No
parameter_values SortOrder No
sequence SortOrder No
enable SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_category_mappingAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
category_id SortOrder No
sequence SortOrder No

cms_category_mappingMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
category_id SortOrder No
sequence SortOrder No
enable SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_category_mappingMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
category_id SortOrder No
sequence SortOrder No
enable SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_category_mappingSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
category_id SortOrder No
sequence SortOrder No

BoolNullableWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput | Null Yes
not Boolean | NestedBoolNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedBoolNullableFilter No
_max NestedBoolNullableFilter No

DateTimeNullableFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | Null Yes
notIn DateTime | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableFilter | Null Yes

StringNullableFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringNullableFilter | Null Yes

cms_channelCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
licensor_id SortOrder No
code SortOrder No
handle SortOrder No
title SortOrder No
image SortOrder No
description SortOrder No
statistics SortOrder No
parameter_values SortOrder No
seo_info SortOrder No
territory SortOrder No
default_territory SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
title_en SortOrder No
title_zhtw SortOrder No
title_inid SortOrder No

cms_channelAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
licensor_id SortOrder No

cms_channelMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
licensor_id SortOrder No
code SortOrder No
handle SortOrder No
territory SortOrder No
default_territory SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
title_en SortOrder No
title_zhtw SortOrder No
title_inid SortOrder No

cms_channelMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
licensor_id SortOrder No
code SortOrder No
handle SortOrder No
territory SortOrder No
default_territory SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
title_en SortOrder No
title_zhtw SortOrder No
title_inid SortOrder No

cms_channelSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
licensor_id SortOrder No

DateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | Null Yes
notIn DateTime | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No

StringNullableWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

Cms_curation_mappingListRelationFilter

Name Type Nullable
every cms_curation_mappingWhereInput No
some cms_curation_mappingWhereInput No
none cms_curation_mappingWhereInput No

cms_curation_mappingOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

cms_curationCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
key SortOrder No
code SortOrder No
title SortOrder No
company_id SortOrder No
territory SortOrder No
default_territory SortOrder No
status SortOrder No
detail_parameter SortOrder No
updated_user SortOrder No
updated_date SortOrder No
title_en SortOrder No
title_zhtw SortOrder No
title_inid SortOrder No

cms_curationAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No

cms_curationMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
key SortOrder No
code SortOrder No
company_id SortOrder No
territory SortOrder No
default_territory SortOrder No
status SortOrder No
updated_user SortOrder No
updated_date SortOrder No
title_en SortOrder No
title_zhtw SortOrder No
title_inid SortOrder No

cms_curationMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
key SortOrder No
code SortOrder No
company_id SortOrder No
territory SortOrder No
default_territory SortOrder No
status SortOrder No
updated_user SortOrder No
updated_date SortOrder No
title_en SortOrder No
title_zhtw SortOrder No
title_inid SortOrder No

cms_curationSumOrderByAggregateInput

Name Type Nullable
id SortOrder No

Cms_curationRelationFilter

Name Type Nullable
is cms_curationWhereInput No
isNot cms_curationWhereInput No

cms_curation_mappingResource_idCuration_idEditedCompoundUniqueInput

Name Type Nullable
resource_id BigInt No
curation_id BigInt No
edited Boolean No

cms_curation_mappingCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
curation_id SortOrder No
edited SortOrder No
sequence SortOrder No
parameter_values SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_curation_mappingAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
curation_id SortOrder No
sequence SortOrder No

cms_curation_mappingMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
curation_id SortOrder No
edited SortOrder No
sequence SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_curation_mappingMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
curation_id SortOrder No
edited SortOrder No
sequence SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_curation_mappingSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
curation_id SortOrder No
sequence SortOrder No

Cms_curation_scheduling_itemListRelationFilter

Name Type Nullable
every cms_curation_scheduling_itemWhereInput No
some cms_curation_scheduling_itemWhereInput No
none cms_curation_scheduling_itemWhereInput No

cms_curation_scheduling_itemOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

cms_curation_schedulingKeyTerritoryPublished_dateCompoundUniqueInput

Name Type Nullable
key String No
territory String No
published_date DateTime No

cms_curation_schedulingCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
curation_id SortOrder No
title SortOrder No
key SortOrder No
territory SortOrder No
description SortOrder No
status SortOrder No
published_date SortOrder No
synchronized SortOrder No
enabled SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_curation_schedulingAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
curation_id SortOrder No

cms_curation_schedulingMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
curation_id SortOrder No
key SortOrder No
territory SortOrder No
description SortOrder No
status SortOrder No
published_date SortOrder No
synchronized SortOrder No
enabled SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_curation_schedulingMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
curation_id SortOrder No
key SortOrder No
territory SortOrder No
description SortOrder No
status SortOrder No
published_date SortOrder No
synchronized SortOrder No
enabled SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_curation_schedulingSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
curation_id SortOrder No

Cms_curation_schedulingRelationFilter

Name Type Nullable
is cms_curation_schedulingWhereInput No
isNot cms_curation_schedulingWhereInput No

cms_curation_scheduling_itemParent_idResource_idCuration_idCompoundUniqueInput

Name Type Nullable
parent_id BigInt No
resource_id BigInt No
curation_id BigInt No

cms_curation_scheduling_itemCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
parent_id SortOrder No
resource_id SortOrder No
curation_id SortOrder No
parameter_values SortOrder No
sequence SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_curation_scheduling_itemAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
parent_id SortOrder No
resource_id SortOrder No
curation_id SortOrder No
sequence SortOrder No

cms_curation_scheduling_itemMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
parent_id SortOrder No
resource_id SortOrder No
curation_id SortOrder No
sequence SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_curation_scheduling_itemMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
parent_id SortOrder No
resource_id SortOrder No
curation_id SortOrder No
sequence SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_curation_scheduling_itemSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
parent_id SortOrder No
resource_id SortOrder No
curation_id SortOrder No
sequence SortOrder No

Cms_hash_tag_mappingListRelationFilter

Name Type Nullable
every cms_hash_tag_mappingWhereInput No
some cms_hash_tag_mappingWhereInput No
none cms_hash_tag_mappingWhereInput No

cms_hash_tag_mappingOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

cms_hash_tagCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
title SortOrder No
sequence SortOrder No
statistics SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_hash_tagAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
sequence SortOrder No

cms_hash_tagMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
title SortOrder No
sequence SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_hash_tagMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
title SortOrder No
sequence SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_hash_tagSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
sequence SortOrder No

Cms_hash_tagRelationFilter

Name Type Nullable
is cms_hash_tagWhereInput No
isNot cms_hash_tagWhereInput No

cms_hash_tag_mappingResource_idHash_tag_idCompoundUniqueInput

Name Type Nullable
resource_id BigInt No
hash_tag_id BigInt No

cms_hash_tag_mappingIdResource_idCompoundUniqueInput

Name Type Nullable
id BigInt No
resource_id BigInt No

cms_hash_tag_mappingCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
hash_tag_id SortOrder No
parameter_values SortOrder No
sequence SortOrder No
enable SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_hash_tag_mappingAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
hash_tag_id SortOrder No
sequence SortOrder No

cms_hash_tag_mappingMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
hash_tag_id SortOrder No
sequence SortOrder No
enable SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_hash_tag_mappingMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
hash_tag_id SortOrder No
sequence SortOrder No
enable SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_hash_tag_mappingSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
hash_tag_id SortOrder No
sequence SortOrder No

cms_label_infoCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
key SortOrder No
title SortOrder No
sequence SortOrder No
statistics SortOrder No
parameter_values SortOrder No
updated_user SortOrder No
updated_date SortOrder No
title_en SortOrder No
title_zhtw SortOrder No
title_inid SortOrder No

cms_label_infoAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
sequence SortOrder No

cms_label_infoMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
key SortOrder No
sequence SortOrder No
updated_user SortOrder No
updated_date SortOrder No
title_en SortOrder No
title_zhtw SortOrder No
title_inid SortOrder No

cms_label_infoMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
key SortOrder No
sequence SortOrder No
updated_user SortOrder No
updated_date SortOrder No
title_en SortOrder No
title_zhtw SortOrder No
title_inid SortOrder No

cms_label_infoSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
sequence SortOrder No

cms_label_info_mappingDetail_mapping_idLabel_info_idCompoundUniqueInput

Name Type Nullable
detail_mapping_id String No
label_info_id BigInt No

cms_label_info_mappingCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
mapping_type SortOrder No
detail_mapping_id SortOrder No
label_info_id SortOrder No
parameter_values SortOrder No
sequence SortOrder No
enable SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_label_info_mappingAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
label_info_id SortOrder No
sequence SortOrder No

cms_label_info_mappingMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
mapping_type SortOrder No
detail_mapping_id SortOrder No
label_info_id SortOrder No
sequence SortOrder No
enable SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_label_info_mappingMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
mapping_type SortOrder No
detail_mapping_id SortOrder No
label_info_id SortOrder No
sequence SortOrder No
enable SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_label_info_mappingSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
label_info_id SortOrder No
sequence SortOrder No

cms_published_settingResource_idTerritoryPublished_dateUnpublished_dateCompoundUniqueInput

Name Type Nullable
resource_id BigInt No
territory String No
published_date DateTime No
unpublished_date DateTime No

cms_published_settingCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
territory SortOrder No
published_date SortOrder No
unpublished_date SortOrder No
show_start_date SortOrder No
show_end_date SortOrder No
play_start_date SortOrder No
play_end_date SortOrder No
parameter_values SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_published_settingAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No

cms_published_settingMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
territory SortOrder No
published_date SortOrder No
unpublished_date SortOrder No
show_start_date SortOrder No
show_end_date SortOrder No
play_start_date SortOrder No
play_end_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_published_settingMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
territory SortOrder No
published_date SortOrder No
unpublished_date SortOrder No
show_start_date SortOrder No
show_end_date SortOrder No
play_start_date SortOrder No
play_end_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_published_settingSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No

IntFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int No
notIn Int No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntFilter No

Cms_published_settingListRelationFilter

Name Type Nullable
every cms_published_settingWhereInput No
some cms_published_settingWhereInput No
none cms_published_settingWhereInput No

Cms_resource_import_logListRelationFilter

Name Type Nullable
every cms_resource_import_logWhereInput No
some cms_resource_import_logWhereInput No
none cms_resource_import_logWhereInput No

Cms_resource_parameterListRelationFilter

Name Type Nullable
every cms_resource_parameterWhereInput No
some cms_resource_parameterWhereInput No
none cms_resource_parameterWhereInput No

Cms_resource_statisticsListRelationFilter

Name Type Nullable
every cms_resource_statisticsWhereInput No
some cms_resource_statisticsWhereInput No
none cms_resource_statisticsWhereInput No

cms_published_settingOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

cms_resource_import_logOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

cms_resource_parameterOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

cms_resource_statisticsOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

cms_resourcePartner_resource_idChannel_codeCompoundUniqueInput

Name Type Nullable
partner_resource_id String No
channel_code String No

cms_resourceCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
key SortOrder No
code SortOrder No
type SortOrder No
title SortOrder No
channel_code SortOrder No
licensor_id SortOrder No
company_id SortOrder No
territory SortOrder No
default_territory SortOrder No
status SortOrder No
partner_resource_id SortOrder No
published_date SortOrder No
unpublished_date SortOrder No
enable SortOrder No
updated_user SortOrder No
updated_date SortOrder No
title_en SortOrder No
title_zhtw SortOrder No
title_inid SortOrder No

cms_resourceAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
licensor_id SortOrder No
enable SortOrder No

cms_resourceMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
key SortOrder No
code SortOrder No
type SortOrder No
channel_code SortOrder No
licensor_id SortOrder No
company_id SortOrder No
territory SortOrder No
default_territory SortOrder No
status SortOrder No
partner_resource_id SortOrder No
published_date SortOrder No
unpublished_date SortOrder No
enable SortOrder No
updated_user SortOrder No
updated_date SortOrder No
title_en SortOrder No
title_zhtw SortOrder No
title_inid SortOrder No

cms_resourceMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
key SortOrder No
code SortOrder No
type SortOrder No
channel_code SortOrder No
licensor_id SortOrder No
company_id SortOrder No
territory SortOrder No
default_territory SortOrder No
status SortOrder No
partner_resource_id SortOrder No
published_date SortOrder No
unpublished_date SortOrder No
enable SortOrder No
updated_user SortOrder No
updated_date SortOrder No
title_en SortOrder No
title_zhtw SortOrder No
title_inid SortOrder No

cms_resourceSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
licensor_id SortOrder No
enable SortOrder No

IntWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int No
notIn Int No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

BigIntNullableFilter

Name Type Nullable
equals BigInt | BigIntFieldRefInput | Null Yes
in BigInt[] | Null Yes
notIn BigInt[] | Null Yes
lt BigInt | BigIntFieldRefInput No
lte BigInt | BigIntFieldRefInput No
gt BigInt | BigIntFieldRefInput No
gte BigInt | BigIntFieldRefInput No
not BigInt | NestedBigIntNullableFilter | Null Yes

Cms_resourceNullableRelationFilter

Name Type Nullable
is cms_resourceWhereInput | Null Yes
isNot cms_resourceWhereInput | Null Yes

cms_resource_import_logCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
partner_resource_id SortOrder No
channel_code SortOrder No
resource_id SortOrder No
execute_process SortOrder No
execute_status SortOrder No
imp_result SortOrder No
poster_import SortOrder No
poster_type SortOrder No
video_import SortOrder No
oa_task_job_id SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_resource_import_logAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
poster_import SortOrder No
video_import SortOrder No
oa_task_job_id SortOrder No

cms_resource_import_logMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
partner_resource_id SortOrder No
channel_code SortOrder No
resource_id SortOrder No
execute_process SortOrder No
execute_status SortOrder No
poster_import SortOrder No
poster_type SortOrder No
video_import SortOrder No
oa_task_job_id SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_resource_import_logMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
partner_resource_id SortOrder No
channel_code SortOrder No
resource_id SortOrder No
execute_process SortOrder No
execute_status SortOrder No
poster_import SortOrder No
poster_type SortOrder No
video_import SortOrder No
oa_task_job_id SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_resource_import_logSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
resource_id SortOrder No
poster_import SortOrder No
video_import SortOrder No
oa_task_job_id SortOrder No

BigIntNullableWithAggregatesFilter

Name Type Nullable
equals BigInt | BigIntFieldRefInput | Null Yes
in BigInt[] | Null Yes
notIn BigInt[] | Null Yes
lt BigInt | BigIntFieldRefInput No
lte BigInt | BigIntFieldRefInput No
gt BigInt | BigIntFieldRefInput No
gte BigInt | BigIntFieldRefInput No
not BigInt | NestedBigIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedBigIntNullableFilter No
_min NestedBigIntNullableFilter No
_max NestedBigIntNullableFilter No

cms_resource_parameterResource_idTerritoryCompoundUniqueInput

Name Type Nullable
resource_id BigInt No
territory String No

cms_resource_parameterCountOrderByAggregateInput

Name Type Nullable
resource_id SortOrder No
territory SortOrder No
master_code SortOrder No
master_key SortOrder No
master_type SortOrder No
video_id SortOrder No
duration SortOrder No
show_direction SortOrder No
sub_statuses SortOrder No
detail SortOrder No
description SortOrder No
player_info SortOrder No
posters SortOrder No
category_info SortOrder No
label_info SortOrder No
hash_tag_info SortOrder No
seo_info SortOrder No
parameter_values SortOrder No
updated_user SortOrder No
updated_date SortOrder No
artwork_status SortOrder No
transcoding_status SortOrder No

cms_resource_parameterAvgOrderByAggregateInput

Name Type Nullable
resource_id SortOrder No

cms_resource_parameterMaxOrderByAggregateInput

Name Type Nullable
resource_id SortOrder No
territory SortOrder No
master_code SortOrder No
master_key SortOrder No
master_type SortOrder No
video_id SortOrder No
duration SortOrder No
show_direction SortOrder No
updated_user SortOrder No
updated_date SortOrder No
artwork_status SortOrder No
transcoding_status SortOrder No

cms_resource_parameterMinOrderByAggregateInput

Name Type Nullable
resource_id SortOrder No
territory SortOrder No
master_code SortOrder No
master_key SortOrder No
master_type SortOrder No
video_id SortOrder No
duration SortOrder No
show_direction SortOrder No
updated_user SortOrder No
updated_date SortOrder No
artwork_status SortOrder No
transcoding_status SortOrder No

cms_resource_parameterSumOrderByAggregateInput

Name Type Nullable
resource_id SortOrder No

cms_resource_statisticsResource_idTerritoryCompoundUniqueInput

Name Type Nullable
resource_id BigInt No
territory String No

cms_resource_statisticsCountOrderByAggregateInput

Name Type Nullable
resource_id SortOrder No
territory SortOrder No
statistics SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_resource_statisticsAvgOrderByAggregateInput

Name Type Nullable
resource_id SortOrder No

cms_resource_statisticsMaxOrderByAggregateInput

Name Type Nullable
resource_id SortOrder No
territory SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_resource_statisticsMinOrderByAggregateInput

Name Type Nullable
resource_id SortOrder No
territory SortOrder No
updated_user SortOrder No
updated_date SortOrder No

cms_resource_statisticsSumOrderByAggregateInput

Name Type Nullable
resource_id SortOrder No

oa_change_logsCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
territory SortOrder No
function_name SortOrder No
mapping_id SortOrder No
sub_function_name SortOrder No
sub_mapping_id SortOrder No
comment SortOrder No
action SortOrder No
before SortOrder No
after SortOrder No
jira_no SortOrder No
updated_user SortOrder No
updated_date SortOrder No

oa_change_logsAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No

oa_change_logsMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
territory SortOrder No
function_name SortOrder No
mapping_id SortOrder No
sub_function_name SortOrder No
sub_mapping_id SortOrder No
comment SortOrder No
action SortOrder No
jira_no SortOrder No
updated_user SortOrder No
updated_date SortOrder No

oa_change_logsMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
territory SortOrder No
function_name SortOrder No
mapping_id SortOrder No
sub_function_name SortOrder No
sub_mapping_id SortOrder No
comment SortOrder No
action SortOrder No
jira_no SortOrder No
updated_user SortOrder No
updated_date SortOrder No

oa_change_logsSumOrderByAggregateInput

Name Type Nullable
id SortOrder No

oa_licensorCodeLicensor_keyCompoundUniqueInput

Name Type Nullable
code String No
licensor_key String No

oa_licensorCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
licensor_key SortOrder No
code SortOrder No
company_name SortOrder No
category SortOrder No
contact_name SortOrder No
contact_phone SortOrder No
contact_email SortOrder No
contact_mobile SortOrder No
s3_bucket_name SortOrder No
enable SortOrder No
updated_user SortOrder No
updated_date SortOrder No

oa_licensorAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No

oa_licensorMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
licensor_key SortOrder No
code SortOrder No
company_name SortOrder No
category SortOrder No
contact_name SortOrder No
contact_phone SortOrder No
contact_email SortOrder No
contact_mobile SortOrder No
s3_bucket_name SortOrder No
enable SortOrder No
updated_user SortOrder No
updated_date SortOrder No

oa_licensorMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
licensor_key SortOrder No
code SortOrder No
company_name SortOrder No
category SortOrder No
contact_name SortOrder No
contact_phone SortOrder No
contact_email SortOrder No
contact_mobile SortOrder No
s3_bucket_name SortOrder No
enable SortOrder No
updated_user SortOrder No
updated_date SortOrder No

oa_licensorSumOrderByAggregateInput

Name Type Nullable
id SortOrder No

oa_system_codeCode_typeTerritoryCompoundUniqueInput

Name Type Nullable
code_type String No
territory String No

oa_system_codeCountOrderByAggregateInput

Name Type Nullable
code_type SortOrder No
territory SortOrder No
code_type_name SortOrder No
show_sequence SortOrder No
used_flag SortOrder No
up_level_type SortOrder No
memo SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
code_type_name_local SortOrder No
code_type_name_eng SortOrder No

oa_system_codeAvgOrderByAggregateInput

Name Type Nullable
show_sequence SortOrder No

oa_system_codeMaxOrderByAggregateInput

Name Type Nullable
code_type SortOrder No
territory SortOrder No
show_sequence SortOrder No
used_flag SortOrder No
up_level_type SortOrder No
memo SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
code_type_name_local SortOrder No
code_type_name_eng SortOrder No

oa_system_codeMinOrderByAggregateInput

Name Type Nullable
code_type SortOrder No
territory SortOrder No
show_sequence SortOrder No
used_flag SortOrder No
up_level_type SortOrder No
memo SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
code_type_name_local SortOrder No
code_type_name_eng SortOrder No

oa_system_codeSumOrderByAggregateInput

Name Type Nullable
show_sequence SortOrder No

oa_system_code_detailCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
code_type SortOrder No
territory SortOrder No
code SortOrder No
code_group SortOrder No
value_type SortOrder No
code_name SortOrder No
code_parameter SortOrder No
show_sequence SortOrder No
used_flag SortOrder No
up_level_type SortOrder No
memo SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
code_name_local SortOrder No
code_name_eng SortOrder No

oa_system_code_detailAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
show_sequence SortOrder No

oa_system_code_detailMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
code_type SortOrder No
territory SortOrder No
code SortOrder No
code_group SortOrder No
value_type SortOrder No
show_sequence SortOrder No
used_flag SortOrder No
up_level_type SortOrder No
memo SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
code_name_local SortOrder No
code_name_eng SortOrder No

oa_system_code_detailMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
code_type SortOrder No
territory SortOrder No
code SortOrder No
code_group SortOrder No
value_type SortOrder No
show_sequence SortOrder No
used_flag SortOrder No
up_level_type SortOrder No
memo SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No
code_name_local SortOrder No
code_name_eng SortOrder No

oa_system_code_detailSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
show_sequence SortOrder No

oa_task_jobCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
task_label SortOrder No
job_name SortOrder No
task_name SortOrder No
task_target SortOrder No
execution_time SortOrder No
execution_script SortOrder No
execution_log SortOrder No
executed SortOrder No
exec_start_date SortOrder No
exec_end_date SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

oa_task_jobAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
executed SortOrder No
enable SortOrder No

oa_task_jobMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
task_label SortOrder No
job_name SortOrder No
task_name SortOrder No
task_target SortOrder No
execution_time SortOrder No
execution_script SortOrder No
executed SortOrder No
exec_start_date SortOrder No
exec_end_date SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

oa_task_jobMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
task_label SortOrder No
job_name SortOrder No
task_name SortOrder No
task_target SortOrder No
execution_time SortOrder No
execution_script SortOrder No
executed SortOrder No
exec_start_date SortOrder No
exec_end_date SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

oa_task_jobSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
executed SortOrder No
enable SortOrder No

oa_territoryCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
code SortOrder No
title SortOrder No
default_territory SortOrder No
language SortOrder No
default_language SortOrder No
timezone SortOrder No
priority SortOrder No
updated_user SortOrder No
updated_date SortOrder No

oa_territoryAvgOrderByAggregateInput

Name Type Nullable
priority SortOrder No

oa_territoryMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
code SortOrder No
title SortOrder No
default_territory SortOrder No
language SortOrder No
default_language SortOrder No
timezone SortOrder No
priority SortOrder No
updated_user SortOrder No
updated_date SortOrder No

oa_territoryMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
code SortOrder No
title SortOrder No
default_territory SortOrder No
language SortOrder No
default_language SortOrder No
timezone SortOrder No
priority SortOrder No
updated_user SortOrder No
updated_date SortOrder No

oa_territorySumOrderByAggregateInput

Name Type Nullable
priority SortOrder No

system_functionCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
menu_id SortOrder No
name SortOrder No
show_name SortOrder No
icon SortOrder No
type SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

system_functionMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
menu_id SortOrder No
name SortOrder No
show_name SortOrder No
icon SortOrder No
type SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

system_functionMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
menu_id SortOrder No
name SortOrder No
show_name SortOrder No
icon SortOrder No
type SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

system_menuCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
cascade_id SortOrder No
name SortOrder No
pathname SortOrder No
icon SortOrder No
show_in_menu SortOrder No
is_web_page SortOrder No
is_need_login SortOrder No
parent_id SortOrder No
table_memo SortOrder No
sort SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

system_menuAvgOrderByAggregateInput

Name Type Nullable
sort SortOrder No

system_menuMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
cascade_id SortOrder No
name SortOrder No
pathname SortOrder No
icon SortOrder No
show_in_menu SortOrder No
is_web_page SortOrder No
is_need_login SortOrder No
parent_id SortOrder No
table_memo SortOrder No
sort SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

system_menuMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
cascade_id SortOrder No
name SortOrder No
pathname SortOrder No
icon SortOrder No
show_in_menu SortOrder No
is_web_page SortOrder No
is_need_login SortOrder No
parent_id SortOrder No
table_memo SortOrder No
sort SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

system_menuSumOrderByAggregateInput

Name Type Nullable
sort SortOrder No

system_relevanceCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
memo SortOrder No
type SortOrder No
first_id SortOrder No
second_id SortOrder No
third_id SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

system_relevanceMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
memo SortOrder No
type SortOrder No
first_id SortOrder No
second_id SortOrder No
third_id SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

system_relevanceMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
memo SortOrder No
type SortOrder No
first_id SortOrder No
second_id SortOrder No
third_id SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

system_roleCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
code SortOrder No
name SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

system_roleMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
code SortOrder No
name SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

system_roleMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
code SortOrder No
name SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

system_userCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
provider_id SortOrder No
provider SortOrder No
display_name SortOrder No
family_name SortOrder No
given_name SortOrder No
email SortOrder No
email_verified SortOrder No
password SortOrder No
language SortOrder No
locale SortOrder No
picture SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

system_userMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
provider_id SortOrder No
provider SortOrder No
display_name SortOrder No
family_name SortOrder No
given_name SortOrder No
email SortOrder No
email_verified SortOrder No
password SortOrder No
language SortOrder No
locale SortOrder No
picture SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

system_userMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
provider_id SortOrder No
provider SortOrder No
display_name SortOrder No
family_name SortOrder No
given_name SortOrder No
email SortOrder No
email_verified SortOrder No
password SortOrder No
language SortOrder No
locale SortOrder No
picture SortOrder No
enable SortOrder No
created_user SortOrder No
created_date SortOrder No
updated_user SortOrder No
updated_date SortOrder No

UserRelationFilter

Name Type Nullable
is UserWhereInput No
isNot UserWhereInput No

AccountProviderProviderAccountIdCompoundUniqueInput

Name Type Nullable
provider String No
providerAccountId String No

AccountCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder No
access_token SortOrder No
expires_at SortOrder No
token_type SortOrder No
scope SortOrder No
id_token SortOrder No
session_state SortOrder No

AccountAvgOrderByAggregateInput

Name Type Nullable
expires_at SortOrder No

AccountMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder No
access_token SortOrder No
expires_at SortOrder No
token_type SortOrder No
scope SortOrder No
id_token SortOrder No
session_state SortOrder No

AccountMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder No
access_token SortOrder No
expires_at SortOrder No
token_type SortOrder No
scope SortOrder No
id_token SortOrder No
session_state SortOrder No

AccountSumOrderByAggregateInput

Name Type Nullable
expires_at SortOrder No

SessionCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
sessionToken SortOrder No
userId SortOrder No
expires SortOrder No

SessionMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
sessionToken SortOrder No
userId SortOrder No
expires SortOrder No

SessionMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
sessionToken SortOrder No
userId SortOrder No
expires SortOrder No

AccountListRelationFilter

Name Type Nullable
every AccountWhereInput No
some AccountWhereInput No
none AccountWhereInput No

SessionListRelationFilter

Name Type Nullable
every SessionWhereInput No
some SessionWhereInput No
none SessionWhereInput No

AccountOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

SessionOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
email SortOrder No
emailVerified SortOrder No
image SortOrder No

UserMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
email SortOrder No
emailVerified SortOrder No
image SortOrder No

UserMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
email SortOrder No
emailVerified SortOrder No
image SortOrder No

VerificationTokenIdentifierTokenCompoundUniqueInput

Name Type Nullable
identifier String No
token String No

VerificationTokenCountOrderByAggregateInput

Name Type Nullable
identifier SortOrder No
token SortOrder No
expires SortOrder No

VerificationTokenMaxOrderByAggregateInput

Name Type Nullable
identifier SortOrder No
token SortOrder No
expires SortOrder No

VerificationTokenMinOrderByAggregateInput

Name Type Nullable
identifier SortOrder No
token SortOrder No
expires SortOrder No



BigIntFieldUpdateOperationsInput

Name Type Nullable
set BigInt No
increment BigInt No
decrement BigInt No
multiply BigInt No
divide BigInt No

StringFieldUpdateOperationsInput

Name Type Nullable
set String No

BoolFieldUpdateOperationsInput

Name Type Nullable
set Boolean No

NullableIntFieldUpdateOperationsInput

Name Type Nullable
set Int | Null Yes
increment Int No
decrement Int No
multiply Int No
divide Int No

DateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime No

cms_category_mappingUpdateManyWithoutCms_categoryNestedInput

Name Type Nullable
create cms_category_mappingCreateWithoutCms_categoryInput | cms_category_mappingCreateWithoutCms_categoryInput[] | cms_category_mappingUncheckedCreateWithoutCms_categoryInput | cms_category_mappingUncheckedCreateWithoutCms_categoryInput[] No
connectOrCreate cms_category_mappingCreateOrConnectWithoutCms_categoryInput | cms_category_mappingCreateOrConnectWithoutCms_categoryInput[] No
upsert cms_category_mappingUpsertWithWhereUniqueWithoutCms_categoryInput | cms_category_mappingUpsertWithWhereUniqueWithoutCms_categoryInput[] No
createMany cms_category_mappingCreateManyCms_categoryInputEnvelope No
set cms_category_mappingWhereUniqueInput | cms_category_mappingWhereUniqueInput[] No
disconnect cms_category_mappingWhereUniqueInput | cms_category_mappingWhereUniqueInput[] No
delete cms_category_mappingWhereUniqueInput | cms_category_mappingWhereUniqueInput[] No
connect cms_category_mappingWhereUniqueInput | cms_category_mappingWhereUniqueInput[] No
update cms_category_mappingUpdateWithWhereUniqueWithoutCms_categoryInput | cms_category_mappingUpdateWithWhereUniqueWithoutCms_categoryInput[] No
updateMany cms_category_mappingUpdateManyWithWhereWithoutCms_categoryInput | cms_category_mappingUpdateManyWithWhereWithoutCms_categoryInput[] No
deleteMany cms_category_mappingScalarWhereInput | cms_category_mappingScalarWhereInput[] No

cms_category_mappingUncheckedUpdateManyWithoutCms_categoryNestedInput

Name Type Nullable
create cms_category_mappingCreateWithoutCms_categoryInput | cms_category_mappingCreateWithoutCms_categoryInput[] | cms_category_mappingUncheckedCreateWithoutCms_categoryInput | cms_category_mappingUncheckedCreateWithoutCms_categoryInput[] No
connectOrCreate cms_category_mappingCreateOrConnectWithoutCms_categoryInput | cms_category_mappingCreateOrConnectWithoutCms_categoryInput[] No
upsert cms_category_mappingUpsertWithWhereUniqueWithoutCms_categoryInput | cms_category_mappingUpsertWithWhereUniqueWithoutCms_categoryInput[] No
createMany cms_category_mappingCreateManyCms_categoryInputEnvelope No
set cms_category_mappingWhereUniqueInput | cms_category_mappingWhereUniqueInput[] No
disconnect cms_category_mappingWhereUniqueInput | cms_category_mappingWhereUniqueInput[] No
delete cms_category_mappingWhereUniqueInput | cms_category_mappingWhereUniqueInput[] No
connect cms_category_mappingWhereUniqueInput | cms_category_mappingWhereUniqueInput[] No
update cms_category_mappingUpdateWithWhereUniqueWithoutCms_categoryInput | cms_category_mappingUpdateWithWhereUniqueWithoutCms_categoryInput[] No
updateMany cms_category_mappingUpdateManyWithWhereWithoutCms_categoryInput | cms_category_mappingUpdateManyWithWhereWithoutCms_categoryInput[] No
deleteMany cms_category_mappingScalarWhereInput | cms_category_mappingScalarWhereInput[] No



NullableBoolFieldUpdateOperationsInput

Name Type Nullable
set Boolean | Null Yes



NullableDateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime | Null Yes

NullableStringFieldUpdateOperationsInput

Name Type Nullable
set String | Null Yes



cms_curation_mappingUpdateManyWithoutCms_curationNestedInput

Name Type Nullable
create cms_curation_mappingCreateWithoutCms_curationInput | cms_curation_mappingCreateWithoutCms_curationInput[] | cms_curation_mappingUncheckedCreateWithoutCms_curationInput | cms_curation_mappingUncheckedCreateWithoutCms_curationInput[] No
connectOrCreate cms_curation_mappingCreateOrConnectWithoutCms_curationInput | cms_curation_mappingCreateOrConnectWithoutCms_curationInput[] No
upsert cms_curation_mappingUpsertWithWhereUniqueWithoutCms_curationInput | cms_curation_mappingUpsertWithWhereUniqueWithoutCms_curationInput[] No
createMany cms_curation_mappingCreateManyCms_curationInputEnvelope No
set cms_curation_mappingWhereUniqueInput | cms_curation_mappingWhereUniqueInput[] No
disconnect cms_curation_mappingWhereUniqueInput | cms_curation_mappingWhereUniqueInput[] No
delete cms_curation_mappingWhereUniqueInput | cms_curation_mappingWhereUniqueInput[] No
connect cms_curation_mappingWhereUniqueInput | cms_curation_mappingWhereUniqueInput[] No
update cms_curation_mappingUpdateWithWhereUniqueWithoutCms_curationInput | cms_curation_mappingUpdateWithWhereUniqueWithoutCms_curationInput[] No
updateMany cms_curation_mappingUpdateManyWithWhereWithoutCms_curationInput | cms_curation_mappingUpdateManyWithWhereWithoutCms_curationInput[] No
deleteMany cms_curation_mappingScalarWhereInput | cms_curation_mappingScalarWhereInput[] No

cms_curation_mappingUncheckedUpdateManyWithoutCms_curationNestedInput

Name Type Nullable
create cms_curation_mappingCreateWithoutCms_curationInput | cms_curation_mappingCreateWithoutCms_curationInput[] | cms_curation_mappingUncheckedCreateWithoutCms_curationInput | cms_curation_mappingUncheckedCreateWithoutCms_curationInput[] No
connectOrCreate cms_curation_mappingCreateOrConnectWithoutCms_curationInput | cms_curation_mappingCreateOrConnectWithoutCms_curationInput[] No
upsert cms_curation_mappingUpsertWithWhereUniqueWithoutCms_curationInput | cms_curation_mappingUpsertWithWhereUniqueWithoutCms_curationInput[] No
createMany cms_curation_mappingCreateManyCms_curationInputEnvelope No
set cms_curation_mappingWhereUniqueInput | cms_curation_mappingWhereUniqueInput[] No
disconnect cms_curation_mappingWhereUniqueInput | cms_curation_mappingWhereUniqueInput[] No
delete cms_curation_mappingWhereUniqueInput | cms_curation_mappingWhereUniqueInput[] No
connect cms_curation_mappingWhereUniqueInput | cms_curation_mappingWhereUniqueInput[] No
update cms_curation_mappingUpdateWithWhereUniqueWithoutCms_curationInput | cms_curation_mappingUpdateWithWhereUniqueWithoutCms_curationInput[] No
updateMany cms_curation_mappingUpdateManyWithWhereWithoutCms_curationInput | cms_curation_mappingUpdateManyWithWhereWithoutCms_curationInput[] No
deleteMany cms_curation_mappingScalarWhereInput | cms_curation_mappingScalarWhereInput[] No




cms_curation_scheduling_itemUncheckedCreateNestedManyWithoutCms_curation_schedulingInput

Name Type Nullable
create cms_curation_scheduling_itemCreateWithoutCms_curation_schedulingInput | cms_curation_scheduling_itemCreateWithoutCms_curation_schedulingInput[] | cms_curation_scheduling_itemUncheckedCreateWithoutCms_curation_schedulingInput | cms_curation_scheduling_itemUncheckedCreateWithoutCms_curation_schedulingInput[] No
connectOrCreate cms_curation_scheduling_itemCreateOrConnectWithoutCms_curation_schedulingInput | cms_curation_scheduling_itemCreateOrConnectWithoutCms_curation_schedulingInput[] No
createMany cms_curation_scheduling_itemCreateManyCms_curation_schedulingInputEnvelope No
connect cms_curation_scheduling_itemWhereUniqueInput | cms_curation_scheduling_itemWhereUniqueInput[] No

cms_curation_scheduling_itemUpdateManyWithoutCms_curation_schedulingNestedInput

Name Type Nullable
create cms_curation_scheduling_itemCreateWithoutCms_curation_schedulingInput | cms_curation_scheduling_itemCreateWithoutCms_curation_schedulingInput[] | cms_curation_scheduling_itemUncheckedCreateWithoutCms_curation_schedulingInput | cms_curation_scheduling_itemUncheckedCreateWithoutCms_curation_schedulingInput[] No
connectOrCreate cms_curation_scheduling_itemCreateOrConnectWithoutCms_curation_schedulingInput | cms_curation_scheduling_itemCreateOrConnectWithoutCms_curation_schedulingInput[] No
upsert cms_curation_scheduling_itemUpsertWithWhereUniqueWithoutCms_curation_schedulingInput | cms_curation_scheduling_itemUpsertWithWhereUniqueWithoutCms_curation_schedulingInput[] No
createMany cms_curation_scheduling_itemCreateManyCms_curation_schedulingInputEnvelope No
set cms_curation_scheduling_itemWhereUniqueInput | cms_curation_scheduling_itemWhereUniqueInput[] No
disconnect cms_curation_scheduling_itemWhereUniqueInput | cms_curation_scheduling_itemWhereUniqueInput[] No
delete cms_curation_scheduling_itemWhereUniqueInput | cms_curation_scheduling_itemWhereUniqueInput[] No
connect cms_curation_scheduling_itemWhereUniqueInput | cms_curation_scheduling_itemWhereUniqueInput[] No
update cms_curation_scheduling_itemUpdateWithWhereUniqueWithoutCms_curation_schedulingInput | cms_curation_scheduling_itemUpdateWithWhereUniqueWithoutCms_curation_schedulingInput[] No
updateMany cms_curation_scheduling_itemUpdateManyWithWhereWithoutCms_curation_schedulingInput | cms_curation_scheduling_itemUpdateManyWithWhereWithoutCms_curation_schedulingInput[] No
deleteMany cms_curation_scheduling_itemScalarWhereInput | cms_curation_scheduling_itemScalarWhereInput[] No

cms_curation_scheduling_itemUncheckedUpdateManyWithoutCms_curation_schedulingNestedInput

Name Type Nullable
create cms_curation_scheduling_itemCreateWithoutCms_curation_schedulingInput | cms_curation_scheduling_itemCreateWithoutCms_curation_schedulingInput[] | cms_curation_scheduling_itemUncheckedCreateWithoutCms_curation_schedulingInput | cms_curation_scheduling_itemUncheckedCreateWithoutCms_curation_schedulingInput[] No
connectOrCreate cms_curation_scheduling_itemCreateOrConnectWithoutCms_curation_schedulingInput | cms_curation_scheduling_itemCreateOrConnectWithoutCms_curation_schedulingInput[] No
upsert cms_curation_scheduling_itemUpsertWithWhereUniqueWithoutCms_curation_schedulingInput | cms_curation_scheduling_itemUpsertWithWhereUniqueWithoutCms_curation_schedulingInput[] No
createMany cms_curation_scheduling_itemCreateManyCms_curation_schedulingInputEnvelope No
set cms_curation_scheduling_itemWhereUniqueInput | cms_curation_scheduling_itemWhereUniqueInput[] No
disconnect cms_curation_scheduling_itemWhereUniqueInput | cms_curation_scheduling_itemWhereUniqueInput[] No
delete cms_curation_scheduling_itemWhereUniqueInput | cms_curation_scheduling_itemWhereUniqueInput[] No
connect cms_curation_scheduling_itemWhereUniqueInput | cms_curation_scheduling_itemWhereUniqueInput[] No
update cms_curation_scheduling_itemUpdateWithWhereUniqueWithoutCms_curation_schedulingInput | cms_curation_scheduling_itemUpdateWithWhereUniqueWithoutCms_curation_schedulingInput[] No
updateMany cms_curation_scheduling_itemUpdateManyWithWhereWithoutCms_curation_schedulingInput | cms_curation_scheduling_itemUpdateManyWithWhereWithoutCms_curation_schedulingInput[] No
deleteMany cms_curation_scheduling_itemScalarWhereInput | cms_curation_scheduling_itemScalarWhereInput[] No





cms_hash_tag_mappingUpdateManyWithoutCms_hash_tagNestedInput

Name Type Nullable
create cms_hash_tag_mappingCreateWithoutCms_hash_tagInput | cms_hash_tag_mappingCreateWithoutCms_hash_tagInput[] | cms_hash_tag_mappingUncheckedCreateWithoutCms_hash_tagInput | cms_hash_tag_mappingUncheckedCreateWithoutCms_hash_tagInput[] No
connectOrCreate cms_hash_tag_mappingCreateOrConnectWithoutCms_hash_tagInput | cms_hash_tag_mappingCreateOrConnectWithoutCms_hash_tagInput[] No
upsert cms_hash_tag_mappingUpsertWithWhereUniqueWithoutCms_hash_tagInput | cms_hash_tag_mappingUpsertWithWhereUniqueWithoutCms_hash_tagInput[] No
createMany cms_hash_tag_mappingCreateManyCms_hash_tagInputEnvelope No
set cms_hash_tag_mappingWhereUniqueInput | cms_hash_tag_mappingWhereUniqueInput[] No
disconnect cms_hash_tag_mappingWhereUniqueInput | cms_hash_tag_mappingWhereUniqueInput[] No
delete cms_hash_tag_mappingWhereUniqueInput | cms_hash_tag_mappingWhereUniqueInput[] No
connect cms_hash_tag_mappingWhereUniqueInput | cms_hash_tag_mappingWhereUniqueInput[] No
update cms_hash_tag_mappingUpdateWithWhereUniqueWithoutCms_hash_tagInput | cms_hash_tag_mappingUpdateWithWhereUniqueWithoutCms_hash_tagInput[] No
updateMany cms_hash_tag_mappingUpdateManyWithWhereWithoutCms_hash_tagInput | cms_hash_tag_mappingUpdateManyWithWhereWithoutCms_hash_tagInput[] No
deleteMany cms_hash_tag_mappingScalarWhereInput | cms_hash_tag_mappingScalarWhereInput[] No

cms_hash_tag_mappingUncheckedUpdateManyWithoutCms_hash_tagNestedInput

Name Type Nullable
create cms_hash_tag_mappingCreateWithoutCms_hash_tagInput | cms_hash_tag_mappingCreateWithoutCms_hash_tagInput[] | cms_hash_tag_mappingUncheckedCreateWithoutCms_hash_tagInput | cms_hash_tag_mappingUncheckedCreateWithoutCms_hash_tagInput[] No
connectOrCreate cms_hash_tag_mappingCreateOrConnectWithoutCms_hash_tagInput | cms_hash_tag_mappingCreateOrConnectWithoutCms_hash_tagInput[] No
upsert cms_hash_tag_mappingUpsertWithWhereUniqueWithoutCms_hash_tagInput | cms_hash_tag_mappingUpsertWithWhereUniqueWithoutCms_hash_tagInput[] No
createMany cms_hash_tag_mappingCreateManyCms_hash_tagInputEnvelope No
set cms_hash_tag_mappingWhereUniqueInput | cms_hash_tag_mappingWhereUniqueInput[] No
disconnect cms_hash_tag_mappingWhereUniqueInput | cms_hash_tag_mappingWhereUniqueInput[] No
delete cms_hash_tag_mappingWhereUniqueInput | cms_hash_tag_mappingWhereUniqueInput[] No
connect cms_hash_tag_mappingWhereUniqueInput | cms_hash_tag_mappingWhereUniqueInput[] No
update cms_hash_tag_mappingUpdateWithWhereUniqueWithoutCms_hash_tagInput | cms_hash_tag_mappingUpdateWithWhereUniqueWithoutCms_hash_tagInput[] No
updateMany cms_hash_tag_mappingUpdateManyWithWhereWithoutCms_hash_tagInput | cms_hash_tag_mappingUpdateManyWithWhereWithoutCms_hash_tagInput[] No
deleteMany cms_hash_tag_mappingScalarWhereInput | cms_hash_tag_mappingScalarWhereInput[] No



















IntFieldUpdateOperationsInput

Name Type Nullable
set Int No
increment Int No
decrement Int No
multiply Int No
divide Int No

cms_category_mappingUpdateManyWithoutCms_resourceNestedInput

Name Type Nullable
create cms_category_mappingCreateWithoutCms_resourceInput | cms_category_mappingCreateWithoutCms_resourceInput[] | cms_category_mappingUncheckedCreateWithoutCms_resourceInput | cms_category_mappingUncheckedCreateWithoutCms_resourceInput[] No
connectOrCreate cms_category_mappingCreateOrConnectWithoutCms_resourceInput | cms_category_mappingCreateOrConnectWithoutCms_resourceInput[] No
upsert cms_category_mappingUpsertWithWhereUniqueWithoutCms_resourceInput | cms_category_mappingUpsertWithWhereUniqueWithoutCms_resourceInput[] No
createMany cms_category_mappingCreateManyCms_resourceInputEnvelope No
set cms_category_mappingWhereUniqueInput | cms_category_mappingWhereUniqueInput[] No
disconnect cms_category_mappingWhereUniqueInput | cms_category_mappingWhereUniqueInput[] No
delete cms_category_mappingWhereUniqueInput | cms_category_mappingWhereUniqueInput[] No
connect cms_category_mappingWhereUniqueInput | cms_category_mappingWhereUniqueInput[] No
update cms_category_mappingUpdateWithWhereUniqueWithoutCms_resourceInput | cms_category_mappingUpdateWithWhereUniqueWithoutCms_resourceInput[] No
updateMany cms_category_mappingUpdateManyWithWhereWithoutCms_resourceInput | cms_category_mappingUpdateManyWithWhereWithoutCms_resourceInput[] No
deleteMany cms_category_mappingScalarWhereInput | cms_category_mappingScalarWhereInput[] No

cms_hash_tag_mappingUpdateManyWithoutCms_resourceNestedInput

Name Type Nullable
create cms_hash_tag_mappingCreateWithoutCms_resourceInput | cms_hash_tag_mappingCreateWithoutCms_resourceInput[] | cms_hash_tag_mappingUncheckedCreateWithoutCms_resourceInput | cms_hash_tag_mappingUncheckedCreateWithoutCms_resourceInput[] No
connectOrCreate cms_hash_tag_mappingCreateOrConnectWithoutCms_resourceInput | cms_hash_tag_mappingCreateOrConnectWithoutCms_resourceInput[] No
upsert cms_hash_tag_mappingUpsertWithWhereUniqueWithoutCms_resourceInput | cms_hash_tag_mappingUpsertWithWhereUniqueWithoutCms_resourceInput[] No
createMany cms_hash_tag_mappingCreateManyCms_resourceInputEnvelope No
set cms_hash_tag_mappingWhereUniqueInput | cms_hash_tag_mappingWhereUniqueInput[] No
disconnect cms_hash_tag_mappingWhereUniqueInput | cms_hash_tag_mappingWhereUniqueInput[] No
delete cms_hash_tag_mappingWhereUniqueInput | cms_hash_tag_mappingWhereUniqueInput[] No
connect cms_hash_tag_mappingWhereUniqueInput | cms_hash_tag_mappingWhereUniqueInput[] No
update cms_hash_tag_mappingUpdateWithWhereUniqueWithoutCms_resourceInput | cms_hash_tag_mappingUpdateWithWhereUniqueWithoutCms_resourceInput[] No
updateMany cms_hash_tag_mappingUpdateManyWithWhereWithoutCms_resourceInput | cms_hash_tag_mappingUpdateManyWithWhereWithoutCms_resourceInput[] No
deleteMany cms_hash_tag_mappingScalarWhereInput | cms_hash_tag_mappingScalarWhereInput[] No

cms_published_settingUpdateManyWithoutCms_resourceNestedInput

Name Type Nullable
create cms_published_settingCreateWithoutCms_resourceInput | cms_published_settingCreateWithoutCms_resourceInput[] | cms_published_settingUncheckedCreateWithoutCms_resourceInput | cms_published_settingUncheckedCreateWithoutCms_resourceInput[] No
connectOrCreate cms_published_settingCreateOrConnectWithoutCms_resourceInput | cms_published_settingCreateOrConnectWithoutCms_resourceInput[] No
upsert cms_published_settingUpsertWithWhereUniqueWithoutCms_resourceInput | cms_published_settingUpsertWithWhereUniqueWithoutCms_resourceInput[] No
createMany cms_published_settingCreateManyCms_resourceInputEnvelope No
set cms_published_settingWhereUniqueInput | cms_published_settingWhereUniqueInput[] No
disconnect cms_published_settingWhereUniqueInput | cms_published_settingWhereUniqueInput[] No
delete cms_published_settingWhereUniqueInput | cms_published_settingWhereUniqueInput[] No
connect cms_published_settingWhereUniqueInput | cms_published_settingWhereUniqueInput[] No
update cms_published_settingUpdateWithWhereUniqueWithoutCms_resourceInput | cms_published_settingUpdateWithWhereUniqueWithoutCms_resourceInput[] No
updateMany cms_published_settingUpdateManyWithWhereWithoutCms_resourceInput | cms_published_settingUpdateManyWithWhereWithoutCms_resourceInput[] No
deleteMany cms_published_settingScalarWhereInput | cms_published_settingScalarWhereInput[] No

cms_resource_import_logUpdateManyWithoutCms_resourceNestedInput

Name Type Nullable
create cms_resource_import_logCreateWithoutCms_resourceInput | cms_resource_import_logCreateWithoutCms_resourceInput[] | cms_resource_import_logUncheckedCreateWithoutCms_resourceInput | cms_resource_import_logUncheckedCreateWithoutCms_resourceInput[] No
connectOrCreate cms_resource_import_logCreateOrConnectWithoutCms_resourceInput | cms_resource_import_logCreateOrConnectWithoutCms_resourceInput[] No
upsert cms_resource_import_logUpsertWithWhereUniqueWithoutCms_resourceInput | cms_resource_import_logUpsertWithWhereUniqueWithoutCms_resourceInput[] No
createMany cms_resource_import_logCreateManyCms_resourceInputEnvelope No
set cms_resource_import_logWhereUniqueInput | cms_resource_import_logWhereUniqueInput[] No
disconnect cms_resource_import_logWhereUniqueInput | cms_resource_import_logWhereUniqueInput[] No
delete cms_resource_import_logWhereUniqueInput | cms_resource_import_logWhereUniqueInput[] No
connect cms_resource_import_logWhereUniqueInput | cms_resource_import_logWhereUniqueInput[] No
update cms_resource_import_logUpdateWithWhereUniqueWithoutCms_resourceInput | cms_resource_import_logUpdateWithWhereUniqueWithoutCms_resourceInput[] No
updateMany cms_resource_import_logUpdateManyWithWhereWithoutCms_resourceInput | cms_resource_import_logUpdateManyWithWhereWithoutCms_resourceInput[] No
deleteMany cms_resource_import_logScalarWhereInput | cms_resource_import_logScalarWhereInput[] No

cms_resource_parameterUpdateManyWithoutCms_resourceNestedInput

Name Type Nullable
create cms_resource_parameterCreateWithoutCms_resourceInput | cms_resource_parameterCreateWithoutCms_resourceInput[] | cms_resource_parameterUncheckedCreateWithoutCms_resourceInput | cms_resource_parameterUncheckedCreateWithoutCms_resourceInput[] No
connectOrCreate cms_resource_parameterCreateOrConnectWithoutCms_resourceInput | cms_resource_parameterCreateOrConnectWithoutCms_resourceInput[] No
upsert cms_resource_parameterUpsertWithWhereUniqueWithoutCms_resourceInput | cms_resource_parameterUpsertWithWhereUniqueWithoutCms_resourceInput[] No
createMany cms_resource_parameterCreateManyCms_resourceInputEnvelope No
set cms_resource_parameterWhereUniqueInput | cms_resource_parameterWhereUniqueInput[] No
disconnect cms_resource_parameterWhereUniqueInput | cms_resource_parameterWhereUniqueInput[] No
delete cms_resource_parameterWhereUniqueInput | cms_resource_parameterWhereUniqueInput[] No
connect cms_resource_parameterWhereUniqueInput | cms_resource_parameterWhereUniqueInput[] No
update cms_resource_parameterUpdateWithWhereUniqueWithoutCms_resourceInput | cms_resource_parameterUpdateWithWhereUniqueWithoutCms_resourceInput[] No
updateMany cms_resource_parameterUpdateManyWithWhereWithoutCms_resourceInput | cms_resource_parameterUpdateManyWithWhereWithoutCms_resourceInput[] No
deleteMany cms_resource_parameterScalarWhereInput | cms_resource_parameterScalarWhereInput[] No

cms_resource_statisticsUpdateManyWithoutCms_resourceNestedInput

Name Type Nullable
create cms_resource_statisticsCreateWithoutCms_resourceInput | cms_resource_statisticsCreateWithoutCms_resourceInput[] | cms_resource_statisticsUncheckedCreateWithoutCms_resourceInput | cms_resource_statisticsUncheckedCreateWithoutCms_resourceInput[] No
connectOrCreate cms_resource_statisticsCreateOrConnectWithoutCms_resourceInput | cms_resource_statisticsCreateOrConnectWithoutCms_resourceInput[] No
upsert cms_resource_statisticsUpsertWithWhereUniqueWithoutCms_resourceInput | cms_resource_statisticsUpsertWithWhereUniqueWithoutCms_resourceInput[] No
createMany cms_resource_statisticsCreateManyCms_resourceInputEnvelope No
set cms_resource_statisticsWhereUniqueInput | cms_resource_statisticsWhereUniqueInput[] No
disconnect cms_resource_statisticsWhereUniqueInput | cms_resource_statisticsWhereUniqueInput[] No
delete cms_resource_statisticsWhereUniqueInput | cms_resource_statisticsWhereUniqueInput[] No
connect cms_resource_statisticsWhereUniqueInput | cms_resource_statisticsWhereUniqueInput[] No
update cms_resource_statisticsUpdateWithWhereUniqueWithoutCms_resourceInput | cms_resource_statisticsUpdateWithWhereUniqueWithoutCms_resourceInput[] No
updateMany cms_resource_statisticsUpdateManyWithWhereWithoutCms_resourceInput | cms_resource_statisticsUpdateManyWithWhereWithoutCms_resourceInput[] No
deleteMany cms_resource_statisticsScalarWhereInput | cms_resource_statisticsScalarWhereInput[] No

cms_category_mappingUncheckedUpdateManyWithoutCms_resourceNestedInput

Name Type Nullable
create cms_category_mappingCreateWithoutCms_resourceInput | cms_category_mappingCreateWithoutCms_resourceInput[] | cms_category_mappingUncheckedCreateWithoutCms_resourceInput | cms_category_mappingUncheckedCreateWithoutCms_resourceInput[] No
connectOrCreate cms_category_mappingCreateOrConnectWithoutCms_resourceInput | cms_category_mappingCreateOrConnectWithoutCms_resourceInput[] No
upsert cms_category_mappingUpsertWithWhereUniqueWithoutCms_resourceInput | cms_category_mappingUpsertWithWhereUniqueWithoutCms_resourceInput[] No
createMany cms_category_mappingCreateManyCms_resourceInputEnvelope No
set cms_category_mappingWhereUniqueInput | cms_category_mappingWhereUniqueInput[] No
disconnect cms_category_mappingWhereUniqueInput | cms_category_mappingWhereUniqueInput[] No
delete cms_category_mappingWhereUniqueInput | cms_category_mappingWhereUniqueInput[] No
connect cms_category_mappingWhereUniqueInput | cms_category_mappingWhereUniqueInput[] No
update cms_category_mappingUpdateWithWhereUniqueWithoutCms_resourceInput | cms_category_mappingUpdateWithWhereUniqueWithoutCms_resourceInput[] No
updateMany cms_category_mappingUpdateManyWithWhereWithoutCms_resourceInput | cms_category_mappingUpdateManyWithWhereWithoutCms_resourceInput[] No
deleteMany cms_category_mappingScalarWhereInput | cms_category_mappingScalarWhereInput[] No

cms_hash_tag_mappingUncheckedUpdateManyWithoutCms_resourceNestedInput

Name Type Nullable
create cms_hash_tag_mappingCreateWithoutCms_resourceInput | cms_hash_tag_mappingCreateWithoutCms_resourceInput[] | cms_hash_tag_mappingUncheckedCreateWithoutCms_resourceInput | cms_hash_tag_mappingUncheckedCreateWithoutCms_resourceInput[] No
connectOrCreate cms_hash_tag_mappingCreateOrConnectWithoutCms_resourceInput | cms_hash_tag_mappingCreateOrConnectWithoutCms_resourceInput[] No
upsert cms_hash_tag_mappingUpsertWithWhereUniqueWithoutCms_resourceInput | cms_hash_tag_mappingUpsertWithWhereUniqueWithoutCms_resourceInput[] No
createMany cms_hash_tag_mappingCreateManyCms_resourceInputEnvelope No
set cms_hash_tag_mappingWhereUniqueInput | cms_hash_tag_mappingWhereUniqueInput[] No
disconnect cms_hash_tag_mappingWhereUniqueInput | cms_hash_tag_mappingWhereUniqueInput[] No
delete cms_hash_tag_mappingWhereUniqueInput | cms_hash_tag_mappingWhereUniqueInput[] No
connect cms_hash_tag_mappingWhereUniqueInput | cms_hash_tag_mappingWhereUniqueInput[] No
update cms_hash_tag_mappingUpdateWithWhereUniqueWithoutCms_resourceInput | cms_hash_tag_mappingUpdateWithWhereUniqueWithoutCms_resourceInput[] No
updateMany cms_hash_tag_mappingUpdateManyWithWhereWithoutCms_resourceInput | cms_hash_tag_mappingUpdateManyWithWhereWithoutCms_resourceInput[] No
deleteMany cms_hash_tag_mappingScalarWhereInput | cms_hash_tag_mappingScalarWhereInput[] No

cms_published_settingUncheckedUpdateManyWithoutCms_resourceNestedInput

Name Type Nullable
create cms_published_settingCreateWithoutCms_resourceInput | cms_published_settingCreateWithoutCms_resourceInput[] | cms_published_settingUncheckedCreateWithoutCms_resourceInput | cms_published_settingUncheckedCreateWithoutCms_resourceInput[] No
connectOrCreate cms_published_settingCreateOrConnectWithoutCms_resourceInput | cms_published_settingCreateOrConnectWithoutCms_resourceInput[] No
upsert cms_published_settingUpsertWithWhereUniqueWithoutCms_resourceInput | cms_published_settingUpsertWithWhereUniqueWithoutCms_resourceInput[] No
createMany cms_published_settingCreateManyCms_resourceInputEnvelope No
set cms_published_settingWhereUniqueInput | cms_published_settingWhereUniqueInput[] No
disconnect cms_published_settingWhereUniqueInput | cms_published_settingWhereUniqueInput[] No
delete cms_published_settingWhereUniqueInput | cms_published_settingWhereUniqueInput[] No
connect cms_published_settingWhereUniqueInput | cms_published_settingWhereUniqueInput[] No
update cms_published_settingUpdateWithWhereUniqueWithoutCms_resourceInput | cms_published_settingUpdateWithWhereUniqueWithoutCms_resourceInput[] No
updateMany cms_published_settingUpdateManyWithWhereWithoutCms_resourceInput | cms_published_settingUpdateManyWithWhereWithoutCms_resourceInput[] No
deleteMany cms_published_settingScalarWhereInput | cms_published_settingScalarWhereInput[] No

cms_resource_import_logUncheckedUpdateManyWithoutCms_resourceNestedInput

Name Type Nullable
create cms_resource_import_logCreateWithoutCms_resourceInput | cms_resource_import_logCreateWithoutCms_resourceInput[] | cms_resource_import_logUncheckedCreateWithoutCms_resourceInput | cms_resource_import_logUncheckedCreateWithoutCms_resourceInput[] No
connectOrCreate cms_resource_import_logCreateOrConnectWithoutCms_resourceInput | cms_resource_import_logCreateOrConnectWithoutCms_resourceInput[] No
upsert cms_resource_import_logUpsertWithWhereUniqueWithoutCms_resourceInput | cms_resource_import_logUpsertWithWhereUniqueWithoutCms_resourceInput[] No
createMany cms_resource_import_logCreateManyCms_resourceInputEnvelope No
set cms_resource_import_logWhereUniqueInput | cms_resource_import_logWhereUniqueInput[] No
disconnect cms_resource_import_logWhereUniqueInput | cms_resource_import_logWhereUniqueInput[] No
delete cms_resource_import_logWhereUniqueInput | cms_resource_import_logWhereUniqueInput[] No
connect cms_resource_import_logWhereUniqueInput | cms_resource_import_logWhereUniqueInput[] No
update cms_resource_import_logUpdateWithWhereUniqueWithoutCms_resourceInput | cms_resource_import_logUpdateWithWhereUniqueWithoutCms_resourceInput[] No
updateMany cms_resource_import_logUpdateManyWithWhereWithoutCms_resourceInput | cms_resource_import_logUpdateManyWithWhereWithoutCms_resourceInput[] No
deleteMany cms_resource_import_logScalarWhereInput | cms_resource_import_logScalarWhereInput[] No

cms_resource_parameterUncheckedUpdateManyWithoutCms_resourceNestedInput

Name Type Nullable
create cms_resource_parameterCreateWithoutCms_resourceInput | cms_resource_parameterCreateWithoutCms_resourceInput[] | cms_resource_parameterUncheckedCreateWithoutCms_resourceInput | cms_resource_parameterUncheckedCreateWithoutCms_resourceInput[] No
connectOrCreate cms_resource_parameterCreateOrConnectWithoutCms_resourceInput | cms_resource_parameterCreateOrConnectWithoutCms_resourceInput[] No
upsert cms_resource_parameterUpsertWithWhereUniqueWithoutCms_resourceInput | cms_resource_parameterUpsertWithWhereUniqueWithoutCms_resourceInput[] No
createMany cms_resource_parameterCreateManyCms_resourceInputEnvelope No
set cms_resource_parameterWhereUniqueInput | cms_resource_parameterWhereUniqueInput[] No
disconnect cms_resource_parameterWhereUniqueInput | cms_resource_parameterWhereUniqueInput[] No
delete cms_resource_parameterWhereUniqueInput | cms_resource_parameterWhereUniqueInput[] No
connect cms_resource_parameterWhereUniqueInput | cms_resource_parameterWhereUniqueInput[] No
update cms_resource_parameterUpdateWithWhereUniqueWithoutCms_resourceInput | cms_resource_parameterUpdateWithWhereUniqueWithoutCms_resourceInput[] No
updateMany cms_resource_parameterUpdateManyWithWhereWithoutCms_resourceInput | cms_resource_parameterUpdateManyWithWhereWithoutCms_resourceInput[] No
deleteMany cms_resource_parameterScalarWhereInput | cms_resource_parameterScalarWhereInput[] No

cms_resource_statisticsUncheckedUpdateManyWithoutCms_resourceNestedInput

Name Type Nullable
create cms_resource_statisticsCreateWithoutCms_resourceInput | cms_resource_statisticsCreateWithoutCms_resourceInput[] | cms_resource_statisticsUncheckedCreateWithoutCms_resourceInput | cms_resource_statisticsUncheckedCreateWithoutCms_resourceInput[] No
connectOrCreate cms_resource_statisticsCreateOrConnectWithoutCms_resourceInput | cms_resource_statisticsCreateOrConnectWithoutCms_resourceInput[] No
upsert cms_resource_statisticsUpsertWithWhereUniqueWithoutCms_resourceInput | cms_resource_statisticsUpsertWithWhereUniqueWithoutCms_resourceInput[] No
createMany cms_resource_statisticsCreateManyCms_resourceInputEnvelope No
set cms_resource_statisticsWhereUniqueInput | cms_resource_statisticsWhereUniqueInput[] No
disconnect cms_resource_statisticsWhereUniqueInput | cms_resource_statisticsWhereUniqueInput[] No
delete cms_resource_statisticsWhereUniqueInput | cms_resource_statisticsWhereUniqueInput[] No
connect cms_resource_statisticsWhereUniqueInput | cms_resource_statisticsWhereUniqueInput[] No
update cms_resource_statisticsUpdateWithWhereUniqueWithoutCms_resourceInput | cms_resource_statisticsUpdateWithWhereUniqueWithoutCms_resourceInput[] No
updateMany cms_resource_statisticsUpdateManyWithWhereWithoutCms_resourceInput | cms_resource_statisticsUpdateManyWithWhereWithoutCms_resourceInput[] No
deleteMany cms_resource_statisticsScalarWhereInput | cms_resource_statisticsScalarWhereInput[] No



NullableBigIntFieldUpdateOperationsInput

Name Type Nullable
set BigInt | Null Yes
increment BigInt No
decrement BigInt No
multiply BigInt No
divide BigInt No





UserCreateNestedOneWithoutAccountsInput

Name Type Nullable
create UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput No
connectOrCreate UserCreateOrConnectWithoutAccountsInput No
connect UserWhereUniqueInput No


UserCreateNestedOneWithoutSessionsInput

Name Type Nullable
create UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput No
connectOrCreate UserCreateOrConnectWithoutSessionsInput No
connect UserWhereUniqueInput No






AccountUpdateManyWithoutUserNestedInput

Name Type Nullable
create AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] No
connectOrCreate AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] No
upsert AccountUpsertWithWhereUniqueWithoutUserInput | AccountUpsertWithWhereUniqueWithoutUserInput[] No
createMany AccountCreateManyUserInputEnvelope No
set AccountWhereUniqueInput | AccountWhereUniqueInput[] No
disconnect AccountWhereUniqueInput | AccountWhereUniqueInput[] No
delete AccountWhereUniqueInput | AccountWhereUniqueInput[] No
connect AccountWhereUniqueInput | AccountWhereUniqueInput[] No
update AccountUpdateWithWhereUniqueWithoutUserInput | AccountUpdateWithWhereUniqueWithoutUserInput[] No
updateMany AccountUpdateManyWithWhereWithoutUserInput | AccountUpdateManyWithWhereWithoutUserInput[] No
deleteMany AccountScalarWhereInput | AccountScalarWhereInput[] No

SessionUpdateManyWithoutUserNestedInput

Name Type Nullable
create SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] No
connectOrCreate SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] No
upsert SessionUpsertWithWhereUniqueWithoutUserInput | SessionUpsertWithWhereUniqueWithoutUserInput[] No
createMany SessionCreateManyUserInputEnvelope No
set SessionWhereUniqueInput | SessionWhereUniqueInput[] No
disconnect SessionWhereUniqueInput | SessionWhereUniqueInput[] No
delete SessionWhereUniqueInput | SessionWhereUniqueInput[] No
connect SessionWhereUniqueInput | SessionWhereUniqueInput[] No
update SessionUpdateWithWhereUniqueWithoutUserInput | SessionUpdateWithWhereUniqueWithoutUserInput[] No
updateMany SessionUpdateManyWithWhereWithoutUserInput | SessionUpdateManyWithWhereWithoutUserInput[] No
deleteMany SessionScalarWhereInput | SessionScalarWhereInput[] No

AccountUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] No
connectOrCreate AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] No
upsert AccountUpsertWithWhereUniqueWithoutUserInput | AccountUpsertWithWhereUniqueWithoutUserInput[] No
createMany AccountCreateManyUserInputEnvelope No
set AccountWhereUniqueInput | AccountWhereUniqueInput[] No
disconnect AccountWhereUniqueInput | AccountWhereUniqueInput[] No
delete AccountWhereUniqueInput | AccountWhereUniqueInput[] No
connect AccountWhereUniqueInput | AccountWhereUniqueInput[] No
update AccountUpdateWithWhereUniqueWithoutUserInput | AccountUpdateWithWhereUniqueWithoutUserInput[] No
updateMany AccountUpdateManyWithWhereWithoutUserInput | AccountUpdateManyWithWhereWithoutUserInput[] No
deleteMany AccountScalarWhereInput | AccountScalarWhereInput[] No

SessionUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] No
connectOrCreate SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] No
upsert SessionUpsertWithWhereUniqueWithoutUserInput | SessionUpsertWithWhereUniqueWithoutUserInput[] No
createMany SessionCreateManyUserInputEnvelope No
set SessionWhereUniqueInput | SessionWhereUniqueInput[] No
disconnect SessionWhereUniqueInput | SessionWhereUniqueInput[] No
delete SessionWhereUniqueInput | SessionWhereUniqueInput[] No
connect SessionWhereUniqueInput | SessionWhereUniqueInput[] No
update SessionUpdateWithWhereUniqueWithoutUserInput | SessionUpdateWithWhereUniqueWithoutUserInput[] No
updateMany SessionUpdateManyWithWhereWithoutUserInput | SessionUpdateManyWithWhereWithoutUserInput[] No
deleteMany SessionScalarWhereInput | SessionScalarWhereInput[] No

NestedBigIntFilter

Name Type Nullable
equals BigInt | BigIntFieldRefInput No
in BigInt[] No
notIn BigInt[] No
lt BigInt | BigIntFieldRefInput No
lte BigInt | BigIntFieldRefInput No
gt BigInt | BigIntFieldRefInput No
gte BigInt | BigIntFieldRefInput No
not BigInt | NestedBigIntFilter No

NestedStringFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String No
notIn String No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringFilter No

NestedBoolFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolFilter No

NestedIntNullableFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableFilter | Null Yes

NestedDateTimeFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime No
notIn DateTime No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeFilter No

NestedBigIntWithAggregatesFilter

Name Type Nullable
equals BigInt | BigIntFieldRefInput No
in BigInt[] No
notIn BigInt[] No
lt BigInt | BigIntFieldRefInput No
lte BigInt | BigIntFieldRefInput No
gt BigInt | BigIntFieldRefInput No
gte BigInt | BigIntFieldRefInput No
not BigInt | NestedBigIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedBigIntFilter No
_min NestedBigIntFilter No
_max NestedBigIntFilter No

NestedIntFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int No
notIn Int No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntFilter No

NestedFloatFilter

Name Type Nullable
equals Float | FloatFieldRefInput No
in Float No
notIn Float No
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatFilter No

NestedStringWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String No
notIn String No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

NestedJsonNullableFilter

Name Type Nullable
equals Json | JsonFieldRefInput | JsonNullValueFilter No
path String No
string_contains String | StringFieldRefInput No
string_starts_with String | StringFieldRefInput No
string_ends_with String | StringFieldRefInput No
array_contains Json | JsonFieldRefInput | Null Yes
array_starts_with Json | JsonFieldRefInput | Null Yes
array_ends_with Json | JsonFieldRefInput | Null Yes
lt Json No
lte Json No
gt Json No
gte Json No
not Json | JsonFieldRefInput | JsonNullValueFilter No

NestedBoolWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

NestedIntNullableWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

NestedFloatNullableFilter

Name Type Nullable
equals Float | FloatFieldRefInput | Null Yes
in Float | Null Yes
notIn Float | Null Yes
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatNullableFilter | Null Yes

NestedDateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime No
notIn DateTime No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

NestedBoolNullableFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput | Null Yes
not Boolean | NestedBoolNullableFilter | Null Yes

NestedBoolNullableWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput | Null Yes
not Boolean | NestedBoolNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedBoolNullableFilter No
_max NestedBoolNullableFilter No

NestedDateTimeNullableFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | Null Yes
notIn DateTime | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableFilter | Null Yes

NestedStringNullableFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringNullableFilter | Null Yes

NestedDateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | Null Yes
notIn DateTime | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No

NestedStringNullableWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

NestedIntWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int No
notIn Int No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

NestedBigIntNullableFilter

Name Type Nullable
equals BigInt | BigIntFieldRefInput | Null Yes
in BigInt[] | Null Yes
notIn BigInt[] | Null Yes
lt BigInt | BigIntFieldRefInput No
lte BigInt | BigIntFieldRefInput No
gt BigInt | BigIntFieldRefInput No
gte BigInt | BigIntFieldRefInput No
not BigInt | NestedBigIntNullableFilter | Null Yes

NestedBigIntNullableWithAggregatesFilter

Name Type Nullable
equals BigInt | BigIntFieldRefInput | Null Yes
in BigInt[] | Null Yes
notIn BigInt[] | Null Yes
lt BigInt | BigIntFieldRefInput No
lte BigInt | BigIntFieldRefInput No
gt BigInt | BigIntFieldRefInput No
gte BigInt | BigIntFieldRefInput No
not BigInt | NestedBigIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedBigIntNullableFilter No
_min NestedBigIntNullableFilter No
_max NestedBigIntNullableFilter No

cms_category_mappingCreateWithoutCms_categoryInput

Name Type Nullable
id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No
cms_resource cms_resourceCreateNestedOneWithoutCms_category_mappingInput No

cms_category_mappingUncheckedCreateWithoutCms_categoryInput

Name Type Nullable
id BigInt No
resource_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No

cms_category_mappingCreateOrConnectWithoutCms_categoryInput

Name Type Nullable
where cms_category_mappingWhereUniqueInput No
create cms_category_mappingCreateWithoutCms_categoryInput | cms_category_mappingUncheckedCreateWithoutCms_categoryInput No

cms_category_mappingCreateManyCms_categoryInputEnvelope

Name Type Nullable
data cms_category_mappingCreateManyCms_categoryInput | cms_category_mappingCreateManyCms_categoryInput[] No
skipDuplicates Boolean No


cms_category_mappingUpdateWithWhereUniqueWithoutCms_categoryInput

Name Type Nullable
where cms_category_mappingWhereUniqueInput No
data cms_category_mappingUpdateWithoutCms_categoryInput | cms_category_mappingUncheckedUpdateWithoutCms_categoryInput No

cms_category_mappingUpdateManyWithWhereWithoutCms_categoryInput

Name Type Nullable
where cms_category_mappingScalarWhereInput No
data cms_category_mappingUpdateManyMutationInput | cms_category_mappingUncheckedUpdateManyWithoutCms_categoryInput No

cms_category_mappingScalarWhereInput

Name Type Nullable
AND cms_category_mappingScalarWhereInput | cms_category_mappingScalarWhereInput[] No
OR cms_category_mappingScalarWhereInput[] No
NOT cms_category_mappingScalarWhereInput | cms_category_mappingScalarWhereInput[] No
id BigIntFilter | BigInt No
resource_id BigIntFilter | BigInt No
category_id BigIntFilter | BigInt No
parameter_values JsonNullableFilter No
sequence IntNullableFilter | Int | Null Yes
enable BoolNullableFilter | Boolean | Null Yes
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

cms_categoryCreateWithoutCms_category_mappingInput

Name Type Nullable
id BigInt No
territory String No
key String No
code String No
title NullableJsonNullValueInput | Json No
on_used Boolean No
sequence Int | Null Yes
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_categoryUncheckedCreateWithoutCms_category_mappingInput

Name Type Nullable
id BigInt No
territory String No
key String No
code String No
title NullableJsonNullValueInput | Json No
on_used Boolean No
sequence Int | Null Yes
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_categoryCreateOrConnectWithoutCms_category_mappingInput

Name Type Nullable
where cms_categoryWhereUniqueInput No
create cms_categoryCreateWithoutCms_category_mappingInput | cms_categoryUncheckedCreateWithoutCms_category_mappingInput No

cms_resourceCreateWithoutCms_category_mappingInput

Name Type Nullable
id BigInt No
key String | Null Yes
code String | Null Yes
type String No
title NullableJsonNullValueInput | Json No
channel_code String No
licensor_id BigInt No
company_id String No
territory String No
default_territory String | Null Yes
status String No
partner_resource_id String | Null Yes
published_date DateTime | Null Yes
unpublished_date DateTime | Null Yes
enable Int No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes
cms_hash_tag_mapping cms_hash_tag_mappingCreateNestedManyWithoutCms_resourceInput No
cms_published_setting cms_published_settingCreateNestedManyWithoutCms_resourceInput No
cms_resource_import_log cms_resource_import_logCreateNestedManyWithoutCms_resourceInput No
cms_resource_parameter cms_resource_parameterCreateNestedManyWithoutCms_resourceInput No
cms_resource_statistics cms_resource_statisticsCreateNestedManyWithoutCms_resourceInput No

cms_resourceUncheckedCreateWithoutCms_category_mappingInput

Name Type Nullable
id BigInt No
key String | Null Yes
code String | Null Yes
type String No
title NullableJsonNullValueInput | Json No
channel_code String No
licensor_id BigInt No
company_id String No
territory String No
default_territory String | Null Yes
status String No
partner_resource_id String | Null Yes
published_date DateTime | Null Yes
unpublished_date DateTime | Null Yes
enable Int No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes
cms_hash_tag_mapping cms_hash_tag_mappingUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_published_setting cms_published_settingUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_resource_import_log cms_resource_import_logUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_resource_parameter cms_resource_parameterUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_resource_statistics cms_resource_statisticsUncheckedCreateNestedManyWithoutCms_resourceInput No

cms_resourceCreateOrConnectWithoutCms_category_mappingInput

Name Type Nullable
where cms_resourceWhereUniqueInput No
create cms_resourceCreateWithoutCms_category_mappingInput | cms_resourceUncheckedCreateWithoutCms_category_mappingInput No


cms_categoryUpdateToOneWithWhereWithoutCms_category_mappingInput

Name Type Nullable
where cms_categoryWhereInput No
data cms_categoryUpdateWithoutCms_category_mappingInput | cms_categoryUncheckedUpdateWithoutCms_category_mappingInput No

cms_categoryUpdateWithoutCms_category_mappingInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
key String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
on_used Boolean | BoolFieldUpdateOperationsInput No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_categoryUncheckedUpdateWithoutCms_category_mappingInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
key String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
on_used Boolean | BoolFieldUpdateOperationsInput No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
statistics NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No


cms_resourceUpdateToOneWithWhereWithoutCms_category_mappingInput

Name Type Nullable
where cms_resourceWhereInput No
data cms_resourceUpdateWithoutCms_category_mappingInput | cms_resourceUncheckedUpdateWithoutCms_category_mappingInput No

cms_resourceUpdateWithoutCms_category_mappingInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
channel_code String | StringFieldUpdateOperationsInput No
licensor_id BigInt | BigIntFieldUpdateOperationsInput No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
unpublished_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
enable Int | IntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes
cms_hash_tag_mapping cms_hash_tag_mappingUpdateManyWithoutCms_resourceNestedInput No
cms_published_setting cms_published_settingUpdateManyWithoutCms_resourceNestedInput No
cms_resource_import_log cms_resource_import_logUpdateManyWithoutCms_resourceNestedInput No
cms_resource_parameter cms_resource_parameterUpdateManyWithoutCms_resourceNestedInput No
cms_resource_statistics cms_resource_statisticsUpdateManyWithoutCms_resourceNestedInput No

cms_resourceUncheckedUpdateWithoutCms_category_mappingInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
channel_code String | StringFieldUpdateOperationsInput No
licensor_id BigInt | BigIntFieldUpdateOperationsInput No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
unpublished_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
enable Int | IntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes
cms_hash_tag_mapping cms_hash_tag_mappingUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_published_setting cms_published_settingUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_resource_import_log cms_resource_import_logUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_resource_parameter cms_resource_parameterUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_resource_statistics cms_resource_statisticsUncheckedUpdateManyWithoutCms_resourceNestedInput No

cms_curation_mappingCreateWithoutCms_curationInput

Name Type Nullable
id BigInt No
resource_id BigInt No
edited Boolean | Null Yes
sequence Int | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_curation_mappingUncheckedCreateWithoutCms_curationInput

Name Type Nullable
id BigInt No
resource_id BigInt No
edited Boolean | Null Yes
sequence Int | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_curation_mappingCreateOrConnectWithoutCms_curationInput

Name Type Nullable
where cms_curation_mappingWhereUniqueInput No
create cms_curation_mappingCreateWithoutCms_curationInput | cms_curation_mappingUncheckedCreateWithoutCms_curationInput No

cms_curation_mappingCreateManyCms_curationInputEnvelope

Name Type Nullable
data cms_curation_mappingCreateManyCms_curationInput | cms_curation_mappingCreateManyCms_curationInput[] No
skipDuplicates Boolean No


cms_curation_mappingUpdateWithWhereUniqueWithoutCms_curationInput

Name Type Nullable
where cms_curation_mappingWhereUniqueInput No
data cms_curation_mappingUpdateWithoutCms_curationInput | cms_curation_mappingUncheckedUpdateWithoutCms_curationInput No

cms_curation_mappingUpdateManyWithWhereWithoutCms_curationInput

Name Type Nullable
where cms_curation_mappingScalarWhereInput No
data cms_curation_mappingUpdateManyMutationInput | cms_curation_mappingUncheckedUpdateManyWithoutCms_curationInput No

cms_curation_mappingScalarWhereInput

Name Type Nullable
AND cms_curation_mappingScalarWhereInput | cms_curation_mappingScalarWhereInput[] No
OR cms_curation_mappingScalarWhereInput[] No
NOT cms_curation_mappingScalarWhereInput | cms_curation_mappingScalarWhereInput[] No
id BigIntFilter | BigInt No
resource_id BigIntFilter | BigInt No
curation_id BigIntFilter | BigInt No
edited BoolNullableFilter | Boolean | Null Yes
sequence IntNullableFilter | Int | Null Yes
parameter_values JsonNullableFilter No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

cms_curationCreateWithoutCms_curation_mappingInput

Name Type Nullable
id BigInt No
key String | Null Yes
code String | Null Yes
title NullableJsonNullValueInput | Json No
company_id String No
territory String No
default_territory String | Null Yes
status String No
detail_parameter NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes

cms_curationUncheckedCreateWithoutCms_curation_mappingInput

Name Type Nullable
id BigInt No
key String | Null Yes
code String | Null Yes
title NullableJsonNullValueInput | Json No
company_id String No
territory String No
default_territory String | Null Yes
status String No
detail_parameter NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes

cms_curationCreateOrConnectWithoutCms_curation_mappingInput

Name Type Nullable
where cms_curationWhereUniqueInput No
create cms_curationCreateWithoutCms_curation_mappingInput | cms_curationUncheckedCreateWithoutCms_curation_mappingInput No


cms_curationUpdateToOneWithWhereWithoutCms_curation_mappingInput

Name Type Nullable
where cms_curationWhereInput No
data cms_curationUpdateWithoutCms_curation_mappingInput | cms_curationUncheckedUpdateWithoutCms_curation_mappingInput No

cms_curationUpdateWithoutCms_curation_mappingInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
title NullableJsonNullValueInput | Json No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
detail_parameter NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes

cms_curationUncheckedUpdateWithoutCms_curation_mappingInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
title NullableJsonNullValueInput | Json No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
detail_parameter NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes

cms_curation_scheduling_itemCreateWithoutCms_curation_schedulingInput

Name Type Nullable
id BigInt No
resource_id BigInt No
curation_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
updated_user String No
updated_date DateTime No

cms_curation_scheduling_itemUncheckedCreateWithoutCms_curation_schedulingInput

Name Type Nullable
id BigInt No
resource_id BigInt No
curation_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
updated_user String No
updated_date DateTime No


cms_curation_scheduling_itemCreateManyCms_curation_schedulingInputEnvelope

Name Type Nullable
data cms_curation_scheduling_itemCreateManyCms_curation_schedulingInput | cms_curation_scheduling_itemCreateManyCms_curation_schedulingInput[] No
skipDuplicates Boolean No



cms_curation_scheduling_itemUpdateManyWithWhereWithoutCms_curation_schedulingInput

Name Type Nullable
where cms_curation_scheduling_itemScalarWhereInput No
data cms_curation_scheduling_itemUpdateManyMutationInput | cms_curation_scheduling_itemUncheckedUpdateManyWithoutCms_curation_schedulingInput No

cms_curation_scheduling_itemScalarWhereInput

Name Type Nullable
AND cms_curation_scheduling_itemScalarWhereInput | cms_curation_scheduling_itemScalarWhereInput[] No
OR cms_curation_scheduling_itemScalarWhereInput[] No
NOT cms_curation_scheduling_itemScalarWhereInput | cms_curation_scheduling_itemScalarWhereInput[] No
id BigIntFilter | BigInt No
parent_id BigIntFilter | BigInt No
resource_id BigIntFilter | BigInt No
curation_id BigIntFilter | BigInt No
parameter_values JsonNullableFilter No
sequence IntNullableFilter | Int | Null Yes
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

cms_curation_schedulingCreateWithoutCms_curation_scheduling_itemInput

Name Type Nullable
id BigInt No
curation_id BigInt No
title NullableJsonNullValueInput | Json No
key String | Null Yes
territory String | Null Yes
description String No
status String No
published_date DateTime | Null Yes
synchronized Boolean No
enabled Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

cms_curation_schedulingUncheckedCreateWithoutCms_curation_scheduling_itemInput

Name Type Nullable
id BigInt No
curation_id BigInt No
title NullableJsonNullValueInput | Json No
key String | Null Yes
territory String | Null Yes
description String No
status String No
published_date DateTime | Null Yes
synchronized Boolean No
enabled Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No



cms_curation_schedulingUpdateToOneWithWhereWithoutCms_curation_scheduling_itemInput

Name Type Nullable
where cms_curation_schedulingWhereInput No
data cms_curation_schedulingUpdateWithoutCms_curation_scheduling_itemInput | cms_curation_schedulingUncheckedUpdateWithoutCms_curation_scheduling_itemInput No

cms_curation_schedulingUpdateWithoutCms_curation_scheduling_itemInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
curation_id BigInt | BigIntFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
territory String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | StringFieldUpdateOperationsInput No
status String | StringFieldUpdateOperationsInput No
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
synchronized Boolean | BoolFieldUpdateOperationsInput No
enabled Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_curation_schedulingUncheckedUpdateWithoutCms_curation_scheduling_itemInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
curation_id BigInt | BigIntFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
territory String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | StringFieldUpdateOperationsInput No
status String | StringFieldUpdateOperationsInput No
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
synchronized Boolean | BoolFieldUpdateOperationsInput No
enabled Boolean | BoolFieldUpdateOperationsInput No
created_user String | StringFieldUpdateOperationsInput No
created_date DateTime | DateTimeFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_hash_tag_mappingCreateWithoutCms_hash_tagInput

Name Type Nullable
id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No
cms_resource cms_resourceCreateNestedOneWithoutCms_hash_tag_mappingInput No

cms_hash_tag_mappingUncheckedCreateWithoutCms_hash_tagInput

Name Type Nullable
id BigInt No
resource_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No

cms_hash_tag_mappingCreateOrConnectWithoutCms_hash_tagInput

Name Type Nullable
where cms_hash_tag_mappingWhereUniqueInput No
create cms_hash_tag_mappingCreateWithoutCms_hash_tagInput | cms_hash_tag_mappingUncheckedCreateWithoutCms_hash_tagInput No

cms_hash_tag_mappingCreateManyCms_hash_tagInputEnvelope

Name Type Nullable
data cms_hash_tag_mappingCreateManyCms_hash_tagInput | cms_hash_tag_mappingCreateManyCms_hash_tagInput[] No
skipDuplicates Boolean No


cms_hash_tag_mappingUpdateWithWhereUniqueWithoutCms_hash_tagInput

Name Type Nullable
where cms_hash_tag_mappingWhereUniqueInput No
data cms_hash_tag_mappingUpdateWithoutCms_hash_tagInput | cms_hash_tag_mappingUncheckedUpdateWithoutCms_hash_tagInput No

cms_hash_tag_mappingUpdateManyWithWhereWithoutCms_hash_tagInput

Name Type Nullable
where cms_hash_tag_mappingScalarWhereInput No
data cms_hash_tag_mappingUpdateManyMutationInput | cms_hash_tag_mappingUncheckedUpdateManyWithoutCms_hash_tagInput No

cms_hash_tag_mappingScalarWhereInput

Name Type Nullable
AND cms_hash_tag_mappingScalarWhereInput | cms_hash_tag_mappingScalarWhereInput[] No
OR cms_hash_tag_mappingScalarWhereInput[] No
NOT cms_hash_tag_mappingScalarWhereInput | cms_hash_tag_mappingScalarWhereInput[] No
id BigIntFilter | BigInt No
resource_id BigIntFilter | BigInt No
hash_tag_id BigIntFilter | BigInt No
parameter_values JsonNullableFilter No
sequence IntNullableFilter | Int | Null Yes
enable BoolNullableFilter | Boolean | Null Yes
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

cms_hash_tagCreateWithoutCms_hash_tag_mappingInput

Name Type Nullable
id BigInt No
title String No
sequence Int | Null Yes
statistics NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_hash_tagUncheckedCreateWithoutCms_hash_tag_mappingInput

Name Type Nullable
id BigInt No
title String No
sequence Int | Null Yes
statistics NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_hash_tagCreateOrConnectWithoutCms_hash_tag_mappingInput

Name Type Nullable
where cms_hash_tagWhereUniqueInput No
create cms_hash_tagCreateWithoutCms_hash_tag_mappingInput | cms_hash_tagUncheckedCreateWithoutCms_hash_tag_mappingInput No

cms_resourceCreateWithoutCms_hash_tag_mappingInput

Name Type Nullable
id BigInt No
key String | Null Yes
code String | Null Yes
type String No
title NullableJsonNullValueInput | Json No
channel_code String No
licensor_id BigInt No
company_id String No
territory String No
default_territory String | Null Yes
status String No
partner_resource_id String | Null Yes
published_date DateTime | Null Yes
unpublished_date DateTime | Null Yes
enable Int No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes
cms_category_mapping cms_category_mappingCreateNestedManyWithoutCms_resourceInput No
cms_published_setting cms_published_settingCreateNestedManyWithoutCms_resourceInput No
cms_resource_import_log cms_resource_import_logCreateNestedManyWithoutCms_resourceInput No
cms_resource_parameter cms_resource_parameterCreateNestedManyWithoutCms_resourceInput No
cms_resource_statistics cms_resource_statisticsCreateNestedManyWithoutCms_resourceInput No

cms_resourceUncheckedCreateWithoutCms_hash_tag_mappingInput

Name Type Nullable
id BigInt No
key String | Null Yes
code String | Null Yes
type String No
title NullableJsonNullValueInput | Json No
channel_code String No
licensor_id BigInt No
company_id String No
territory String No
default_territory String | Null Yes
status String No
partner_resource_id String | Null Yes
published_date DateTime | Null Yes
unpublished_date DateTime | Null Yes
enable Int No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes
cms_category_mapping cms_category_mappingUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_published_setting cms_published_settingUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_resource_import_log cms_resource_import_logUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_resource_parameter cms_resource_parameterUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_resource_statistics cms_resource_statisticsUncheckedCreateNestedManyWithoutCms_resourceInput No

cms_resourceCreateOrConnectWithoutCms_hash_tag_mappingInput

Name Type Nullable
where cms_resourceWhereUniqueInput No
create cms_resourceCreateWithoutCms_hash_tag_mappingInput | cms_resourceUncheckedCreateWithoutCms_hash_tag_mappingInput No


cms_hash_tagUpdateToOneWithWhereWithoutCms_hash_tag_mappingInput

Name Type Nullable
where cms_hash_tagWhereInput No
data cms_hash_tagUpdateWithoutCms_hash_tag_mappingInput | cms_hash_tagUncheckedUpdateWithoutCms_hash_tag_mappingInput No

cms_hash_tagUpdateWithoutCms_hash_tag_mappingInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
statistics NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_hash_tagUncheckedUpdateWithoutCms_hash_tag_mappingInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
statistics NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No


cms_resourceUpdateToOneWithWhereWithoutCms_hash_tag_mappingInput

Name Type Nullable
where cms_resourceWhereInput No
data cms_resourceUpdateWithoutCms_hash_tag_mappingInput | cms_resourceUncheckedUpdateWithoutCms_hash_tag_mappingInput No

cms_resourceUpdateWithoutCms_hash_tag_mappingInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
channel_code String | StringFieldUpdateOperationsInput No
licensor_id BigInt | BigIntFieldUpdateOperationsInput No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
unpublished_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
enable Int | IntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes
cms_category_mapping cms_category_mappingUpdateManyWithoutCms_resourceNestedInput No
cms_published_setting cms_published_settingUpdateManyWithoutCms_resourceNestedInput No
cms_resource_import_log cms_resource_import_logUpdateManyWithoutCms_resourceNestedInput No
cms_resource_parameter cms_resource_parameterUpdateManyWithoutCms_resourceNestedInput No
cms_resource_statistics cms_resource_statisticsUpdateManyWithoutCms_resourceNestedInput No

cms_resourceUncheckedUpdateWithoutCms_hash_tag_mappingInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
channel_code String | StringFieldUpdateOperationsInput No
licensor_id BigInt | BigIntFieldUpdateOperationsInput No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
unpublished_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
enable Int | IntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes
cms_category_mapping cms_category_mappingUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_published_setting cms_published_settingUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_resource_import_log cms_resource_import_logUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_resource_parameter cms_resource_parameterUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_resource_statistics cms_resource_statisticsUncheckedUpdateManyWithoutCms_resourceNestedInput No

cms_resourceCreateWithoutCms_published_settingInput

Name Type Nullable
id BigInt No
key String | Null Yes
code String | Null Yes
type String No
title NullableJsonNullValueInput | Json No
channel_code String No
licensor_id BigInt No
company_id String No
territory String No
default_territory String | Null Yes
status String No
partner_resource_id String | Null Yes
published_date DateTime | Null Yes
unpublished_date DateTime | Null Yes
enable Int No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes
cms_category_mapping cms_category_mappingCreateNestedManyWithoutCms_resourceInput No
cms_hash_tag_mapping cms_hash_tag_mappingCreateNestedManyWithoutCms_resourceInput No
cms_resource_import_log cms_resource_import_logCreateNestedManyWithoutCms_resourceInput No
cms_resource_parameter cms_resource_parameterCreateNestedManyWithoutCms_resourceInput No
cms_resource_statistics cms_resource_statisticsCreateNestedManyWithoutCms_resourceInput No

cms_resourceUncheckedCreateWithoutCms_published_settingInput

Name Type Nullable
id BigInt No
key String | Null Yes
code String | Null Yes
type String No
title NullableJsonNullValueInput | Json No
channel_code String No
licensor_id BigInt No
company_id String No
territory String No
default_territory String | Null Yes
status String No
partner_resource_id String | Null Yes
published_date DateTime | Null Yes
unpublished_date DateTime | Null Yes
enable Int No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes
cms_category_mapping cms_category_mappingUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_hash_tag_mapping cms_hash_tag_mappingUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_resource_import_log cms_resource_import_logUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_resource_parameter cms_resource_parameterUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_resource_statistics cms_resource_statisticsUncheckedCreateNestedManyWithoutCms_resourceInput No

cms_resourceCreateOrConnectWithoutCms_published_settingInput

Name Type Nullable
where cms_resourceWhereUniqueInput No
create cms_resourceCreateWithoutCms_published_settingInput | cms_resourceUncheckedCreateWithoutCms_published_settingInput No


cms_resourceUpdateToOneWithWhereWithoutCms_published_settingInput

Name Type Nullable
where cms_resourceWhereInput No
data cms_resourceUpdateWithoutCms_published_settingInput | cms_resourceUncheckedUpdateWithoutCms_published_settingInput No

cms_resourceUpdateWithoutCms_published_settingInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
channel_code String | StringFieldUpdateOperationsInput No
licensor_id BigInt | BigIntFieldUpdateOperationsInput No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
unpublished_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
enable Int | IntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes
cms_category_mapping cms_category_mappingUpdateManyWithoutCms_resourceNestedInput No
cms_hash_tag_mapping cms_hash_tag_mappingUpdateManyWithoutCms_resourceNestedInput No
cms_resource_import_log cms_resource_import_logUpdateManyWithoutCms_resourceNestedInput No
cms_resource_parameter cms_resource_parameterUpdateManyWithoutCms_resourceNestedInput No
cms_resource_statistics cms_resource_statisticsUpdateManyWithoutCms_resourceNestedInput No

cms_resourceUncheckedUpdateWithoutCms_published_settingInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
channel_code String | StringFieldUpdateOperationsInput No
licensor_id BigInt | BigIntFieldUpdateOperationsInput No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
unpublished_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
enable Int | IntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes
cms_category_mapping cms_category_mappingUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_hash_tag_mapping cms_hash_tag_mappingUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_resource_import_log cms_resource_import_logUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_resource_parameter cms_resource_parameterUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_resource_statistics cms_resource_statisticsUncheckedUpdateManyWithoutCms_resourceNestedInput No

cms_category_mappingCreateWithoutCms_resourceInput

Name Type Nullable
id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No
cms_category cms_categoryCreateNestedOneWithoutCms_category_mappingInput No

cms_category_mappingUncheckedCreateWithoutCms_resourceInput

Name Type Nullable
id BigInt No
category_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No

cms_category_mappingCreateOrConnectWithoutCms_resourceInput

Name Type Nullable
where cms_category_mappingWhereUniqueInput No
create cms_category_mappingCreateWithoutCms_resourceInput | cms_category_mappingUncheckedCreateWithoutCms_resourceInput No

cms_category_mappingCreateManyCms_resourceInputEnvelope

Name Type Nullable
data cms_category_mappingCreateManyCms_resourceInput | cms_category_mappingCreateManyCms_resourceInput[] No
skipDuplicates Boolean No

cms_hash_tag_mappingCreateWithoutCms_resourceInput

Name Type Nullable
id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No
cms_hash_tag cms_hash_tagCreateNestedOneWithoutCms_hash_tag_mappingInput No

cms_hash_tag_mappingUncheckedCreateWithoutCms_resourceInput

Name Type Nullable
id BigInt No
hash_tag_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No

cms_hash_tag_mappingCreateOrConnectWithoutCms_resourceInput

Name Type Nullable
where cms_hash_tag_mappingWhereUniqueInput No
create cms_hash_tag_mappingCreateWithoutCms_resourceInput | cms_hash_tag_mappingUncheckedCreateWithoutCms_resourceInput No

cms_hash_tag_mappingCreateManyCms_resourceInputEnvelope

Name Type Nullable
data cms_hash_tag_mappingCreateManyCms_resourceInput | cms_hash_tag_mappingCreateManyCms_resourceInput[] No
skipDuplicates Boolean No

cms_published_settingCreateWithoutCms_resourceInput

Name Type Nullable
id BigInt No
territory String No
published_date DateTime No
unpublished_date DateTime No
show_start_date DateTime | Null Yes
show_end_date DateTime | Null Yes
play_start_date DateTime | Null Yes
play_end_date DateTime | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_published_settingUncheckedCreateWithoutCms_resourceInput

Name Type Nullable
id BigInt No
territory String No
published_date DateTime No
unpublished_date DateTime No
show_start_date DateTime | Null Yes
show_end_date DateTime | Null Yes
play_start_date DateTime | Null Yes
play_end_date DateTime | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_published_settingCreateOrConnectWithoutCms_resourceInput

Name Type Nullable
where cms_published_settingWhereUniqueInput No
create cms_published_settingCreateWithoutCms_resourceInput | cms_published_settingUncheckedCreateWithoutCms_resourceInput No

cms_published_settingCreateManyCms_resourceInputEnvelope

Name Type Nullable
data cms_published_settingCreateManyCms_resourceInput | cms_published_settingCreateManyCms_resourceInput[] No
skipDuplicates Boolean No

cms_resource_import_logCreateWithoutCms_resourceInput

Name Type Nullable
id BigInt No
partner_resource_id String | Null Yes
channel_code String | Null Yes
execute_process String No
execute_status String No
imp_result NullableJsonNullValueInput | Json No
poster_import Int No
poster_type String | Null Yes
video_import Int No
oa_task_job_id BigInt No
updated_user String No
updated_date DateTime No

cms_resource_import_logUncheckedCreateWithoutCms_resourceInput

Name Type Nullable
id BigInt No
partner_resource_id String | Null Yes
channel_code String | Null Yes
execute_process String No
execute_status String No
imp_result NullableJsonNullValueInput | Json No
poster_import Int No
poster_type String | Null Yes
video_import Int No
oa_task_job_id BigInt No
updated_user String No
updated_date DateTime No

cms_resource_import_logCreateOrConnectWithoutCms_resourceInput

Name Type Nullable
where cms_resource_import_logWhereUniqueInput No
create cms_resource_import_logCreateWithoutCms_resourceInput | cms_resource_import_logUncheckedCreateWithoutCms_resourceInput No

cms_resource_import_logCreateManyCms_resourceInputEnvelope

Name Type Nullable
data cms_resource_import_logCreateManyCms_resourceInput | cms_resource_import_logCreateManyCms_resourceInput[] No
skipDuplicates Boolean No

cms_resource_parameterCreateWithoutCms_resourceInput

Name Type Nullable
territory String No
master_code String | Null Yes
master_key String | Null Yes
master_type String | Null Yes
video_id String | Null Yes
duration String | Null Yes
show_direction String | Null Yes
sub_statuses NullableJsonNullValueInput | Json No
detail NullableJsonNullValueInput | Json No
description NullableJsonNullValueInput | Json No
player_info NullableJsonNullValueInput | Json No
posters NullableJsonNullValueInput | Json No
category_info NullableJsonNullValueInput | Json No
label_info NullableJsonNullValueInput | Json No
hash_tag_info NullableJsonNullValueInput | Json No
seo_info NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
artwork_status String | Null Yes
transcoding_status String | Null Yes

cms_resource_parameterUncheckedCreateWithoutCms_resourceInput

Name Type Nullable
territory String No
master_code String | Null Yes
master_key String | Null Yes
master_type String | Null Yes
video_id String | Null Yes
duration String | Null Yes
show_direction String | Null Yes
sub_statuses NullableJsonNullValueInput | Json No
detail NullableJsonNullValueInput | Json No
description NullableJsonNullValueInput | Json No
player_info NullableJsonNullValueInput | Json No
posters NullableJsonNullValueInput | Json No
category_info NullableJsonNullValueInput | Json No
label_info NullableJsonNullValueInput | Json No
hash_tag_info NullableJsonNullValueInput | Json No
seo_info NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
artwork_status String | Null Yes
transcoding_status String | Null Yes

cms_resource_parameterCreateOrConnectWithoutCms_resourceInput

Name Type Nullable
where cms_resource_parameterWhereUniqueInput No
create cms_resource_parameterCreateWithoutCms_resourceInput | cms_resource_parameterUncheckedCreateWithoutCms_resourceInput No

cms_resource_parameterCreateManyCms_resourceInputEnvelope

Name Type Nullable
data cms_resource_parameterCreateManyCms_resourceInput | cms_resource_parameterCreateManyCms_resourceInput[] No
skipDuplicates Boolean No

cms_resource_statisticsCreateWithoutCms_resourceInput

Name Type Nullable
territory String No
statistics NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_resource_statisticsUncheckedCreateWithoutCms_resourceInput

Name Type Nullable
territory String No
statistics NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_resource_statisticsCreateOrConnectWithoutCms_resourceInput

Name Type Nullable
where cms_resource_statisticsWhereUniqueInput No
create cms_resource_statisticsCreateWithoutCms_resourceInput | cms_resource_statisticsUncheckedCreateWithoutCms_resourceInput No

cms_resource_statisticsCreateManyCms_resourceInputEnvelope

Name Type Nullable
data cms_resource_statisticsCreateManyCms_resourceInput | cms_resource_statisticsCreateManyCms_resourceInput[] No
skipDuplicates Boolean No


cms_category_mappingUpdateWithWhereUniqueWithoutCms_resourceInput

Name Type Nullable
where cms_category_mappingWhereUniqueInput No
data cms_category_mappingUpdateWithoutCms_resourceInput | cms_category_mappingUncheckedUpdateWithoutCms_resourceInput No

cms_category_mappingUpdateManyWithWhereWithoutCms_resourceInput

Name Type Nullable
where cms_category_mappingScalarWhereInput No
data cms_category_mappingUpdateManyMutationInput | cms_category_mappingUncheckedUpdateManyWithoutCms_resourceInput No


cms_hash_tag_mappingUpdateWithWhereUniqueWithoutCms_resourceInput

Name Type Nullable
where cms_hash_tag_mappingWhereUniqueInput No
data cms_hash_tag_mappingUpdateWithoutCms_resourceInput | cms_hash_tag_mappingUncheckedUpdateWithoutCms_resourceInput No

cms_hash_tag_mappingUpdateManyWithWhereWithoutCms_resourceInput

Name Type Nullable
where cms_hash_tag_mappingScalarWhereInput No
data cms_hash_tag_mappingUpdateManyMutationInput | cms_hash_tag_mappingUncheckedUpdateManyWithoutCms_resourceInput No


cms_published_settingUpdateWithWhereUniqueWithoutCms_resourceInput

Name Type Nullable
where cms_published_settingWhereUniqueInput No
data cms_published_settingUpdateWithoutCms_resourceInput | cms_published_settingUncheckedUpdateWithoutCms_resourceInput No

cms_published_settingUpdateManyWithWhereWithoutCms_resourceInput

Name Type Nullable
where cms_published_settingScalarWhereInput No
data cms_published_settingUpdateManyMutationInput | cms_published_settingUncheckedUpdateManyWithoutCms_resourceInput No

cms_published_settingScalarWhereInput

Name Type Nullable
AND cms_published_settingScalarWhereInput | cms_published_settingScalarWhereInput[] No
OR cms_published_settingScalarWhereInput[] No
NOT cms_published_settingScalarWhereInput | cms_published_settingScalarWhereInput[] No
id BigIntFilter | BigInt No
resource_id BigIntFilter | BigInt No
territory StringFilter | String No
published_date DateTimeFilter | DateTime No
unpublished_date DateTimeFilter | DateTime No
show_start_date DateTimeNullableFilter | DateTime | Null Yes
show_end_date DateTimeNullableFilter | DateTime | Null Yes
play_start_date DateTimeNullableFilter | DateTime | Null Yes
play_end_date DateTimeNullableFilter | DateTime | Null Yes
parameter_values JsonNullableFilter No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No


cms_resource_import_logUpdateWithWhereUniqueWithoutCms_resourceInput

Name Type Nullable
where cms_resource_import_logWhereUniqueInput No
data cms_resource_import_logUpdateWithoutCms_resourceInput | cms_resource_import_logUncheckedUpdateWithoutCms_resourceInput No

cms_resource_import_logUpdateManyWithWhereWithoutCms_resourceInput

Name Type Nullable
where cms_resource_import_logScalarWhereInput No
data cms_resource_import_logUpdateManyMutationInput | cms_resource_import_logUncheckedUpdateManyWithoutCms_resourceInput No

cms_resource_import_logScalarWhereInput

Name Type Nullable
AND cms_resource_import_logScalarWhereInput | cms_resource_import_logScalarWhereInput[] No
OR cms_resource_import_logScalarWhereInput[] No
NOT cms_resource_import_logScalarWhereInput | cms_resource_import_logScalarWhereInput[] No
id BigIntFilter | BigInt No
partner_resource_id StringNullableFilter | String | Null Yes
channel_code StringNullableFilter | String | Null Yes
resource_id BigIntNullableFilter | BigInt | Null Yes
execute_process StringFilter | String No
execute_status StringFilter | String No
imp_result JsonNullableFilter No
poster_import IntFilter | Int No
poster_type StringNullableFilter | String | Null Yes
video_import IntFilter | Int No
oa_task_job_id BigIntFilter | BigInt No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No


cms_resource_parameterUpdateWithWhereUniqueWithoutCms_resourceInput

Name Type Nullable
where cms_resource_parameterWhereUniqueInput No
data cms_resource_parameterUpdateWithoutCms_resourceInput | cms_resource_parameterUncheckedUpdateWithoutCms_resourceInput No

cms_resource_parameterUpdateManyWithWhereWithoutCms_resourceInput

Name Type Nullable
where cms_resource_parameterScalarWhereInput No
data cms_resource_parameterUpdateManyMutationInput | cms_resource_parameterUncheckedUpdateManyWithoutCms_resourceInput No

cms_resource_parameterScalarWhereInput

Name Type Nullable
AND cms_resource_parameterScalarWhereInput | cms_resource_parameterScalarWhereInput[] No
OR cms_resource_parameterScalarWhereInput[] No
NOT cms_resource_parameterScalarWhereInput | cms_resource_parameterScalarWhereInput[] No
resource_id BigIntFilter | BigInt No
territory StringFilter | String No
master_code StringNullableFilter | String | Null Yes
master_key StringNullableFilter | String | Null Yes
master_type StringNullableFilter | String | Null Yes
video_id StringNullableFilter | String | Null Yes
duration StringNullableFilter | String | Null Yes
show_direction StringNullableFilter | String | Null Yes
sub_statuses JsonNullableFilter No
detail JsonNullableFilter No
description JsonNullableFilter No
player_info JsonNullableFilter No
posters JsonNullableFilter No
category_info JsonNullableFilter No
label_info JsonNullableFilter No
hash_tag_info JsonNullableFilter No
seo_info JsonNullableFilter No
parameter_values JsonNullableFilter No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No
artwork_status StringNullableFilter | String | Null Yes
transcoding_status StringNullableFilter | String | Null Yes


cms_resource_statisticsUpdateWithWhereUniqueWithoutCms_resourceInput

Name Type Nullable
where cms_resource_statisticsWhereUniqueInput No
data cms_resource_statisticsUpdateWithoutCms_resourceInput | cms_resource_statisticsUncheckedUpdateWithoutCms_resourceInput No

cms_resource_statisticsUpdateManyWithWhereWithoutCms_resourceInput

Name Type Nullable
where cms_resource_statisticsScalarWhereInput No
data cms_resource_statisticsUpdateManyMutationInput | cms_resource_statisticsUncheckedUpdateManyWithoutCms_resourceInput No

cms_resource_statisticsScalarWhereInput

Name Type Nullable
AND cms_resource_statisticsScalarWhereInput | cms_resource_statisticsScalarWhereInput[] No
OR cms_resource_statisticsScalarWhereInput[] No
NOT cms_resource_statisticsScalarWhereInput | cms_resource_statisticsScalarWhereInput[] No
resource_id BigIntFilter | BigInt No
territory StringFilter | String No
statistics JsonNullableFilter No
updated_user StringFilter | String No
updated_date DateTimeFilter | DateTime No

cms_resourceCreateWithoutCms_resource_import_logInput

Name Type Nullable
id BigInt No
key String | Null Yes
code String | Null Yes
type String No
title NullableJsonNullValueInput | Json No
channel_code String No
licensor_id BigInt No
company_id String No
territory String No
default_territory String | Null Yes
status String No
partner_resource_id String | Null Yes
published_date DateTime | Null Yes
unpublished_date DateTime | Null Yes
enable Int No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes
cms_category_mapping cms_category_mappingCreateNestedManyWithoutCms_resourceInput No
cms_hash_tag_mapping cms_hash_tag_mappingCreateNestedManyWithoutCms_resourceInput No
cms_published_setting cms_published_settingCreateNestedManyWithoutCms_resourceInput No
cms_resource_parameter cms_resource_parameterCreateNestedManyWithoutCms_resourceInput No
cms_resource_statistics cms_resource_statisticsCreateNestedManyWithoutCms_resourceInput No

cms_resourceUncheckedCreateWithoutCms_resource_import_logInput

Name Type Nullable
id BigInt No
key String | Null Yes
code String | Null Yes
type String No
title NullableJsonNullValueInput | Json No
channel_code String No
licensor_id BigInt No
company_id String No
territory String No
default_territory String | Null Yes
status String No
partner_resource_id String | Null Yes
published_date DateTime | Null Yes
unpublished_date DateTime | Null Yes
enable Int No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes
cms_category_mapping cms_category_mappingUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_hash_tag_mapping cms_hash_tag_mappingUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_published_setting cms_published_settingUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_resource_parameter cms_resource_parameterUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_resource_statistics cms_resource_statisticsUncheckedCreateNestedManyWithoutCms_resourceInput No

cms_resourceCreateOrConnectWithoutCms_resource_import_logInput

Name Type Nullable
where cms_resourceWhereUniqueInput No
create cms_resourceCreateWithoutCms_resource_import_logInput | cms_resourceUncheckedCreateWithoutCms_resource_import_logInput No


cms_resourceUpdateToOneWithWhereWithoutCms_resource_import_logInput

Name Type Nullable
where cms_resourceWhereInput No
data cms_resourceUpdateWithoutCms_resource_import_logInput | cms_resourceUncheckedUpdateWithoutCms_resource_import_logInput No

cms_resourceUpdateWithoutCms_resource_import_logInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
channel_code String | StringFieldUpdateOperationsInput No
licensor_id BigInt | BigIntFieldUpdateOperationsInput No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
unpublished_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
enable Int | IntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes
cms_category_mapping cms_category_mappingUpdateManyWithoutCms_resourceNestedInput No
cms_hash_tag_mapping cms_hash_tag_mappingUpdateManyWithoutCms_resourceNestedInput No
cms_published_setting cms_published_settingUpdateManyWithoutCms_resourceNestedInput No
cms_resource_parameter cms_resource_parameterUpdateManyWithoutCms_resourceNestedInput No
cms_resource_statistics cms_resource_statisticsUpdateManyWithoutCms_resourceNestedInput No

cms_resourceUncheckedUpdateWithoutCms_resource_import_logInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
channel_code String | StringFieldUpdateOperationsInput No
licensor_id BigInt | BigIntFieldUpdateOperationsInput No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
unpublished_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
enable Int | IntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes
cms_category_mapping cms_category_mappingUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_hash_tag_mapping cms_hash_tag_mappingUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_published_setting cms_published_settingUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_resource_parameter cms_resource_parameterUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_resource_statistics cms_resource_statisticsUncheckedUpdateManyWithoutCms_resourceNestedInput No

cms_resourceCreateWithoutCms_resource_parameterInput

Name Type Nullable
id BigInt No
key String | Null Yes
code String | Null Yes
type String No
title NullableJsonNullValueInput | Json No
channel_code String No
licensor_id BigInt No
company_id String No
territory String No
default_territory String | Null Yes
status String No
partner_resource_id String | Null Yes
published_date DateTime | Null Yes
unpublished_date DateTime | Null Yes
enable Int No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes
cms_category_mapping cms_category_mappingCreateNestedManyWithoutCms_resourceInput No
cms_hash_tag_mapping cms_hash_tag_mappingCreateNestedManyWithoutCms_resourceInput No
cms_published_setting cms_published_settingCreateNestedManyWithoutCms_resourceInput No
cms_resource_import_log cms_resource_import_logCreateNestedManyWithoutCms_resourceInput No
cms_resource_statistics cms_resource_statisticsCreateNestedManyWithoutCms_resourceInput No

cms_resourceUncheckedCreateWithoutCms_resource_parameterInput

Name Type Nullable
id BigInt No
key String | Null Yes
code String | Null Yes
type String No
title NullableJsonNullValueInput | Json No
channel_code String No
licensor_id BigInt No
company_id String No
territory String No
default_territory String | Null Yes
status String No
partner_resource_id String | Null Yes
published_date DateTime | Null Yes
unpublished_date DateTime | Null Yes
enable Int No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes
cms_category_mapping cms_category_mappingUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_hash_tag_mapping cms_hash_tag_mappingUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_published_setting cms_published_settingUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_resource_import_log cms_resource_import_logUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_resource_statistics cms_resource_statisticsUncheckedCreateNestedManyWithoutCms_resourceInput No

cms_resourceCreateOrConnectWithoutCms_resource_parameterInput

Name Type Nullable
where cms_resourceWhereUniqueInput No
create cms_resourceCreateWithoutCms_resource_parameterInput | cms_resourceUncheckedCreateWithoutCms_resource_parameterInput No


cms_resourceUpdateToOneWithWhereWithoutCms_resource_parameterInput

Name Type Nullable
where cms_resourceWhereInput No
data cms_resourceUpdateWithoutCms_resource_parameterInput | cms_resourceUncheckedUpdateWithoutCms_resource_parameterInput No

cms_resourceUpdateWithoutCms_resource_parameterInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
channel_code String | StringFieldUpdateOperationsInput No
licensor_id BigInt | BigIntFieldUpdateOperationsInput No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
unpublished_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
enable Int | IntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes
cms_category_mapping cms_category_mappingUpdateManyWithoutCms_resourceNestedInput No
cms_hash_tag_mapping cms_hash_tag_mappingUpdateManyWithoutCms_resourceNestedInput No
cms_published_setting cms_published_settingUpdateManyWithoutCms_resourceNestedInput No
cms_resource_import_log cms_resource_import_logUpdateManyWithoutCms_resourceNestedInput No
cms_resource_statistics cms_resource_statisticsUpdateManyWithoutCms_resourceNestedInput No

cms_resourceUncheckedUpdateWithoutCms_resource_parameterInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
channel_code String | StringFieldUpdateOperationsInput No
licensor_id BigInt | BigIntFieldUpdateOperationsInput No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
unpublished_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
enable Int | IntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes
cms_category_mapping cms_category_mappingUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_hash_tag_mapping cms_hash_tag_mappingUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_published_setting cms_published_settingUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_resource_import_log cms_resource_import_logUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_resource_statistics cms_resource_statisticsUncheckedUpdateManyWithoutCms_resourceNestedInput No

cms_resourceCreateWithoutCms_resource_statisticsInput

Name Type Nullable
id BigInt No
key String | Null Yes
code String | Null Yes
type String No
title NullableJsonNullValueInput | Json No
channel_code String No
licensor_id BigInt No
company_id String No
territory String No
default_territory String | Null Yes
status String No
partner_resource_id String | Null Yes
published_date DateTime | Null Yes
unpublished_date DateTime | Null Yes
enable Int No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes
cms_category_mapping cms_category_mappingCreateNestedManyWithoutCms_resourceInput No
cms_hash_tag_mapping cms_hash_tag_mappingCreateNestedManyWithoutCms_resourceInput No
cms_published_setting cms_published_settingCreateNestedManyWithoutCms_resourceInput No
cms_resource_import_log cms_resource_import_logCreateNestedManyWithoutCms_resourceInput No
cms_resource_parameter cms_resource_parameterCreateNestedManyWithoutCms_resourceInput No

cms_resourceUncheckedCreateWithoutCms_resource_statisticsInput

Name Type Nullable
id BigInt No
key String | Null Yes
code String | Null Yes
type String No
title NullableJsonNullValueInput | Json No
channel_code String No
licensor_id BigInt No
company_id String No
territory String No
default_territory String | Null Yes
status String No
partner_resource_id String | Null Yes
published_date DateTime | Null Yes
unpublished_date DateTime | Null Yes
enable Int No
updated_user String No
updated_date DateTime No
title_en String | Null Yes
title_zhtw String | Null Yes
title_inid String | Null Yes
cms_category_mapping cms_category_mappingUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_hash_tag_mapping cms_hash_tag_mappingUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_published_setting cms_published_settingUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_resource_import_log cms_resource_import_logUncheckedCreateNestedManyWithoutCms_resourceInput No
cms_resource_parameter cms_resource_parameterUncheckedCreateNestedManyWithoutCms_resourceInput No

cms_resourceCreateOrConnectWithoutCms_resource_statisticsInput

Name Type Nullable
where cms_resourceWhereUniqueInput No
create cms_resourceCreateWithoutCms_resource_statisticsInput | cms_resourceUncheckedCreateWithoutCms_resource_statisticsInput No


cms_resourceUpdateToOneWithWhereWithoutCms_resource_statisticsInput

Name Type Nullable
where cms_resourceWhereInput No
data cms_resourceUpdateWithoutCms_resource_statisticsInput | cms_resourceUncheckedUpdateWithoutCms_resource_statisticsInput No

cms_resourceUpdateWithoutCms_resource_statisticsInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
channel_code String | StringFieldUpdateOperationsInput No
licensor_id BigInt | BigIntFieldUpdateOperationsInput No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
unpublished_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
enable Int | IntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes
cms_category_mapping cms_category_mappingUpdateManyWithoutCms_resourceNestedInput No
cms_hash_tag_mapping cms_hash_tag_mappingUpdateManyWithoutCms_resourceNestedInput No
cms_published_setting cms_published_settingUpdateManyWithoutCms_resourceNestedInput No
cms_resource_import_log cms_resource_import_logUpdateManyWithoutCms_resourceNestedInput No
cms_resource_parameter cms_resource_parameterUpdateManyWithoutCms_resourceNestedInput No

cms_resourceUncheckedUpdateWithoutCms_resource_statisticsInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
key String | NullableStringFieldUpdateOperationsInput | Null Yes
code String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
title NullableJsonNullValueInput | Json No
channel_code String | StringFieldUpdateOperationsInput No
licensor_id BigInt | BigIntFieldUpdateOperationsInput No
company_id String | StringFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
default_territory String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | StringFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
published_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
unpublished_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
enable Int | IntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
title_en String | NullableStringFieldUpdateOperationsInput | Null Yes
title_zhtw String | NullableStringFieldUpdateOperationsInput | Null Yes
title_inid String | NullableStringFieldUpdateOperationsInput | Null Yes
cms_category_mapping cms_category_mappingUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_hash_tag_mapping cms_hash_tag_mappingUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_published_setting cms_published_settingUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_resource_import_log cms_resource_import_logUncheckedUpdateManyWithoutCms_resourceNestedInput No
cms_resource_parameter cms_resource_parameterUncheckedUpdateManyWithoutCms_resourceNestedInput No

UserCreateWithoutAccountsInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
sessions SessionCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutAccountsInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
sessions SessionUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutAccountsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput No


UserUpdateToOneWithWhereWithoutAccountsInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutAccountsInput | UserUncheckedUpdateWithoutAccountsInput No

UserUpdateWithoutAccountsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
sessions SessionUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutAccountsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No

UserCreateWithoutSessionsInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutSessionsInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutSessionsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput No


UserUpdateToOneWithWhereWithoutSessionsInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutSessionsInput | UserUncheckedUpdateWithoutSessionsInput No

UserUpdateWithoutSessionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutSessionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No

AccountCreateWithoutUserInput

Name Type Nullable
id String No
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes

AccountUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes

AccountCreateOrConnectWithoutUserInput

Name Type Nullable
where AccountWhereUniqueInput No
create AccountCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput No

AccountCreateManyUserInputEnvelope

Name Type Nullable
data AccountCreateManyUserInput | AccountCreateManyUserInput[] No
skipDuplicates Boolean No

SessionCreateWithoutUserInput

Name Type Nullable
id String No
sessionToken String No
expires DateTime No

SessionUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
sessionToken String No
expires DateTime No

SessionCreateOrConnectWithoutUserInput

Name Type Nullable
where SessionWhereUniqueInput No
create SessionCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput No

SessionCreateManyUserInputEnvelope

Name Type Nullable
data SessionCreateManyUserInput | SessionCreateManyUserInput[] No
skipDuplicates Boolean No


AccountUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where AccountWhereUniqueInput No
data AccountUpdateWithoutUserInput | AccountUncheckedUpdateWithoutUserInput No

AccountUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where AccountScalarWhereInput No
data AccountUpdateManyMutationInput | AccountUncheckedUpdateManyWithoutUserInput No

AccountScalarWhereInput

Name Type Nullable
AND AccountScalarWhereInput | AccountScalarWhereInput[] No
OR AccountScalarWhereInput[] No
NOT AccountScalarWhereInput | AccountScalarWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
type StringFilter | String No
provider StringFilter | String No
providerAccountId StringFilter | String No
refresh_token StringNullableFilter | String | Null Yes
access_token StringNullableFilter | String | Null Yes
expires_at IntNullableFilter | Int | Null Yes
token_type StringNullableFilter | String | Null Yes
scope StringNullableFilter | String | Null Yes
id_token StringNullableFilter | String | Null Yes
session_state StringNullableFilter | String | Null Yes


SessionUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where SessionWhereUniqueInput No
data SessionUpdateWithoutUserInput | SessionUncheckedUpdateWithoutUserInput No

SessionUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where SessionScalarWhereInput No
data SessionUpdateManyMutationInput | SessionUncheckedUpdateManyWithoutUserInput No

SessionScalarWhereInput

Name Type Nullable
AND SessionScalarWhereInput | SessionScalarWhereInput[] No
OR SessionScalarWhereInput[] No
NOT SessionScalarWhereInput | SessionScalarWhereInput[] No
id StringFilter | String No
sessionToken StringFilter | String No
userId StringFilter | String No
expires DateTimeFilter | DateTime No

cms_category_mappingCreateManyCms_categoryInput

Name Type Nullable
id BigInt No
resource_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No

cms_category_mappingUpdateWithoutCms_categoryInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
cms_resource cms_resourceUpdateOneRequiredWithoutCms_category_mappingNestedInput No

cms_category_mappingUncheckedUpdateWithoutCms_categoryInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_category_mappingUncheckedUpdateManyWithoutCms_categoryInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_curation_mappingCreateManyCms_curationInput

Name Type Nullable
id BigInt No
resource_id BigInt No
edited Boolean | Null Yes
sequence Int | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_curation_mappingUpdateWithoutCms_curationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
edited Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_curation_mappingUncheckedUpdateWithoutCms_curationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
edited Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_curation_mappingUncheckedUpdateManyWithoutCms_curationInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
edited Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_curation_scheduling_itemCreateManyCms_curation_schedulingInput

Name Type Nullable
id BigInt No
resource_id BigInt No
curation_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
updated_user String No
updated_date DateTime No

cms_curation_scheduling_itemUpdateWithoutCms_curation_schedulingInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
curation_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_curation_scheduling_itemUncheckedUpdateWithoutCms_curation_schedulingInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
curation_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_curation_scheduling_itemUncheckedUpdateManyWithoutCms_curation_schedulingInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
curation_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_hash_tag_mappingCreateManyCms_hash_tagInput

Name Type Nullable
id BigInt No
resource_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No

cms_hash_tag_mappingUpdateWithoutCms_hash_tagInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
cms_resource cms_resourceUpdateOneRequiredWithoutCms_hash_tag_mappingNestedInput No

cms_hash_tag_mappingUncheckedUpdateWithoutCms_hash_tagInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_hash_tag_mappingUncheckedUpdateManyWithoutCms_hash_tagInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
resource_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_category_mappingCreateManyCms_resourceInput

Name Type Nullable
id BigInt No
category_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No

cms_hash_tag_mappingCreateManyCms_resourceInput

Name Type Nullable
id BigInt No
hash_tag_id BigInt No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | Null Yes
enable Boolean | Null Yes
updated_user String No
updated_date DateTime No

cms_published_settingCreateManyCms_resourceInput

Name Type Nullable
id BigInt No
territory String No
published_date DateTime No
unpublished_date DateTime No
show_start_date DateTime | Null Yes
show_end_date DateTime | Null Yes
play_start_date DateTime | Null Yes
play_end_date DateTime | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_resource_import_logCreateManyCms_resourceInput

Name Type Nullable
id BigInt No
partner_resource_id String | Null Yes
channel_code String | Null Yes
execute_process String No
execute_status String No
imp_result NullableJsonNullValueInput | Json No
poster_import Int No
poster_type String | Null Yes
video_import Int No
oa_task_job_id BigInt No
updated_user String No
updated_date DateTime No

cms_resource_parameterCreateManyCms_resourceInput

Name Type Nullable
territory String No
master_code String | Null Yes
master_key String | Null Yes
master_type String | Null Yes
video_id String | Null Yes
duration String | Null Yes
show_direction String | Null Yes
sub_statuses NullableJsonNullValueInput | Json No
detail NullableJsonNullValueInput | Json No
description NullableJsonNullValueInput | Json No
player_info NullableJsonNullValueInput | Json No
posters NullableJsonNullValueInput | Json No
category_info NullableJsonNullValueInput | Json No
label_info NullableJsonNullValueInput | Json No
hash_tag_info NullableJsonNullValueInput | Json No
seo_info NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No
artwork_status String | Null Yes
transcoding_status String | Null Yes

cms_resource_statisticsCreateManyCms_resourceInput

Name Type Nullable
territory String No
statistics NullableJsonNullValueInput | Json No
updated_user String No
updated_date DateTime No

cms_category_mappingUpdateWithoutCms_resourceInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
cms_category cms_categoryUpdateOneRequiredWithoutCms_category_mappingNestedInput No

cms_category_mappingUncheckedUpdateWithoutCms_resourceInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
category_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_category_mappingUncheckedUpdateManyWithoutCms_resourceInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
category_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_hash_tag_mappingUpdateWithoutCms_resourceInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
cms_hash_tag cms_hash_tagUpdateOneRequiredWithoutCms_hash_tag_mappingNestedInput No

cms_hash_tag_mappingUncheckedUpdateWithoutCms_resourceInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
hash_tag_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_hash_tag_mappingUncheckedUpdateManyWithoutCms_resourceInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
hash_tag_id BigInt | BigIntFieldUpdateOperationsInput No
parameter_values NullableJsonNullValueInput | Json No
sequence Int | NullableIntFieldUpdateOperationsInput | Null Yes
enable Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_published_settingUpdateWithoutCms_resourceInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
published_date DateTime | DateTimeFieldUpdateOperationsInput No
unpublished_date DateTime | DateTimeFieldUpdateOperationsInput No
show_start_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
show_end_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
play_start_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
play_end_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_published_settingUncheckedUpdateWithoutCms_resourceInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
published_date DateTime | DateTimeFieldUpdateOperationsInput No
unpublished_date DateTime | DateTimeFieldUpdateOperationsInput No
show_start_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
show_end_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
play_start_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
play_end_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_published_settingUncheckedUpdateManyWithoutCms_resourceInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
territory String | StringFieldUpdateOperationsInput No
published_date DateTime | DateTimeFieldUpdateOperationsInput No
unpublished_date DateTime | DateTimeFieldUpdateOperationsInput No
show_start_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
show_end_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
play_start_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
play_end_date DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_resource_import_logUpdateWithoutCms_resourceInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
channel_code String | NullableStringFieldUpdateOperationsInput | Null Yes
execute_process String | StringFieldUpdateOperationsInput No
execute_status String | StringFieldUpdateOperationsInput No
imp_result NullableJsonNullValueInput | Json No
poster_import Int | IntFieldUpdateOperationsInput No
poster_type String | NullableStringFieldUpdateOperationsInput | Null Yes
video_import Int | IntFieldUpdateOperationsInput No
oa_task_job_id BigInt | BigIntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_resource_import_logUncheckedUpdateWithoutCms_resourceInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
channel_code String | NullableStringFieldUpdateOperationsInput | Null Yes
execute_process String | StringFieldUpdateOperationsInput No
execute_status String | StringFieldUpdateOperationsInput No
imp_result NullableJsonNullValueInput | Json No
poster_import Int | IntFieldUpdateOperationsInput No
poster_type String | NullableStringFieldUpdateOperationsInput | Null Yes
video_import Int | IntFieldUpdateOperationsInput No
oa_task_job_id BigInt | BigIntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_resource_import_logUncheckedUpdateManyWithoutCms_resourceInput

Name Type Nullable
id BigInt | BigIntFieldUpdateOperationsInput No
partner_resource_id String | NullableStringFieldUpdateOperationsInput | Null Yes
channel_code String | NullableStringFieldUpdateOperationsInput | Null Yes
execute_process String | StringFieldUpdateOperationsInput No
execute_status String | StringFieldUpdateOperationsInput No
imp_result NullableJsonNullValueInput | Json No
poster_import Int | IntFieldUpdateOperationsInput No
poster_type String | NullableStringFieldUpdateOperationsInput | Null Yes
video_import Int | IntFieldUpdateOperationsInput No
oa_task_job_id BigInt | BigIntFieldUpdateOperationsInput No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_resource_parameterUpdateWithoutCms_resourceInput

Name Type Nullable
territory String | StringFieldUpdateOperationsInput No
master_code String | NullableStringFieldUpdateOperationsInput | Null Yes
master_key String | NullableStringFieldUpdateOperationsInput | Null Yes
master_type String | NullableStringFieldUpdateOperationsInput | Null Yes
video_id String | NullableStringFieldUpdateOperationsInput | Null Yes
duration String | NullableStringFieldUpdateOperationsInput | Null Yes
show_direction String | NullableStringFieldUpdateOperationsInput | Null Yes
sub_statuses NullableJsonNullValueInput | Json No
detail NullableJsonNullValueInput | Json No
description NullableJsonNullValueInput | Json No
player_info NullableJsonNullValueInput | Json No
posters NullableJsonNullValueInput | Json No
category_info NullableJsonNullValueInput | Json No
label_info NullableJsonNullValueInput | Json No
hash_tag_info NullableJsonNullValueInput | Json No
seo_info NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
artwork_status String | NullableStringFieldUpdateOperationsInput | Null Yes
transcoding_status String | NullableStringFieldUpdateOperationsInput | Null Yes

cms_resource_parameterUncheckedUpdateWithoutCms_resourceInput

Name Type Nullable
territory String | StringFieldUpdateOperationsInput No
master_code String | NullableStringFieldUpdateOperationsInput | Null Yes
master_key String | NullableStringFieldUpdateOperationsInput | Null Yes
master_type String | NullableStringFieldUpdateOperationsInput | Null Yes
video_id String | NullableStringFieldUpdateOperationsInput | Null Yes
duration String | NullableStringFieldUpdateOperationsInput | Null Yes
show_direction String | NullableStringFieldUpdateOperationsInput | Null Yes
sub_statuses NullableJsonNullValueInput | Json No
detail NullableJsonNullValueInput | Json No
description NullableJsonNullValueInput | Json No
player_info NullableJsonNullValueInput | Json No
posters NullableJsonNullValueInput | Json No
category_info NullableJsonNullValueInput | Json No
label_info NullableJsonNullValueInput | Json No
hash_tag_info NullableJsonNullValueInput | Json No
seo_info NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
artwork_status String | NullableStringFieldUpdateOperationsInput | Null Yes
transcoding_status String | NullableStringFieldUpdateOperationsInput | Null Yes

cms_resource_parameterUncheckedUpdateManyWithoutCms_resourceInput

Name Type Nullable
territory String | StringFieldUpdateOperationsInput No
master_code String | NullableStringFieldUpdateOperationsInput | Null Yes
master_key String | NullableStringFieldUpdateOperationsInput | Null Yes
master_type String | NullableStringFieldUpdateOperationsInput | Null Yes
video_id String | NullableStringFieldUpdateOperationsInput | Null Yes
duration String | NullableStringFieldUpdateOperationsInput | Null Yes
show_direction String | NullableStringFieldUpdateOperationsInput | Null Yes
sub_statuses NullableJsonNullValueInput | Json No
detail NullableJsonNullValueInput | Json No
description NullableJsonNullValueInput | Json No
player_info NullableJsonNullValueInput | Json No
posters NullableJsonNullValueInput | Json No
category_info NullableJsonNullValueInput | Json No
label_info NullableJsonNullValueInput | Json No
hash_tag_info NullableJsonNullValueInput | Json No
seo_info NullableJsonNullValueInput | Json No
parameter_values NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No
artwork_status String | NullableStringFieldUpdateOperationsInput | Null Yes
transcoding_status String | NullableStringFieldUpdateOperationsInput | Null Yes

cms_resource_statisticsUpdateWithoutCms_resourceInput

Name Type Nullable
territory String | StringFieldUpdateOperationsInput No
statistics NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_resource_statisticsUncheckedUpdateWithoutCms_resourceInput

Name Type Nullable
territory String | StringFieldUpdateOperationsInput No
statistics NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

cms_resource_statisticsUncheckedUpdateManyWithoutCms_resourceInput

Name Type Nullable
territory String | StringFieldUpdateOperationsInput No
statistics NullableJsonNullValueInput | Json No
updated_user String | StringFieldUpdateOperationsInput No
updated_date DateTime | DateTimeFieldUpdateOperationsInput No

AccountCreateManyUserInput

Name Type Nullable
id String No
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes

SessionCreateManyUserInput

Name Type Nullable
id String No
sessionToken String No
expires DateTime No

AccountUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes

AccountUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes

AccountUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes

SessionUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

SessionUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

SessionUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

Output Types

cms_category

Name Type Nullable
id BigInt Yes
territory String Yes
key String Yes
code String Yes
title Json No
on_used Boolean Yes
sequence Int No
statistics Json No
parameter_values Json No
updated_user String Yes
updated_date DateTime Yes
cms_category_mapping cms_category_mapping[] No
_count Cms_categoryCountOutputType Yes

cms_category_mapping

Name Type Nullable
id BigInt Yes
resource_id BigInt Yes
category_id BigInt Yes
parameter_values Json No
sequence Int No
enable Boolean No
updated_user String Yes
updated_date DateTime Yes
cms_category cms_category Yes
cms_resource cms_resource Yes

cms_channel

Name Type Nullable
id BigInt Yes
licensor_id BigInt Yes
code String Yes
handle String Yes
title Json No
image Json No
description Json No
statistics Json No
parameter_values Json No
seo_info Json No
territory String Yes
default_territory String Yes
created_date DateTime No
updated_user String Yes
updated_date DateTime Yes
title_en String No
title_zhtw String No
title_inid String No

cms_curation

Name Type Nullable
id BigInt Yes
key String No
code String No
title Json No
company_id String Yes
territory String Yes
default_territory String No
status String Yes
detail_parameter Json No
updated_user String Yes
updated_date DateTime Yes
title_en String No
title_zhtw String No
title_inid String No
cms_curation_mapping cms_curation_mapping[] No
_count Cms_curationCountOutputType Yes

cms_curation_mapping

Name Type Nullable
id BigInt Yes
resource_id BigInt Yes
curation_id BigInt Yes
edited Boolean No
sequence Int No
parameter_values Json No
updated_user String Yes
updated_date DateTime Yes
cms_curation cms_curation Yes

cms_curation_scheduling

Name Type Nullable
id BigInt Yes
curation_id BigInt Yes
title Json No
key String No
territory String No
description String Yes
status String Yes
published_date DateTime No
synchronized Boolean Yes
enabled Boolean Yes
created_user String Yes
created_date DateTime Yes
updated_user String Yes
updated_date DateTime Yes
cms_curation_scheduling_item cms_curation_scheduling_item[] No
_count Cms_curation_schedulingCountOutputType Yes

cms_curation_scheduling_item

Name Type Nullable
id BigInt Yes
parent_id BigInt Yes
resource_id BigInt Yes
curation_id BigInt Yes
parameter_values Json No
sequence Int No
updated_user String Yes
updated_date DateTime Yes
cms_curation_scheduling cms_curation_scheduling Yes

cms_hash_tag

Name Type Nullable
id BigInt Yes
title String Yes
sequence Int No
statistics Json No
updated_user String Yes
updated_date DateTime Yes
cms_hash_tag_mapping cms_hash_tag_mapping[] No
_count Cms_hash_tagCountOutputType Yes

cms_hash_tag_mapping

Name Type Nullable
id BigInt Yes
resource_id BigInt Yes
hash_tag_id BigInt Yes
parameter_values Json No
sequence Int No
enable Boolean No
updated_user String Yes
updated_date DateTime Yes
cms_hash_tag cms_hash_tag Yes
cms_resource cms_resource Yes

cms_label_info

Name Type Nullable
id BigInt Yes
key String No
title Json No
sequence Int No
statistics Json No
parameter_values Json No
updated_user String Yes
updated_date DateTime Yes
title_en String No
title_zhtw String No
title_inid String No

cms_label_info_mapping

Name Type Nullable
id BigInt Yes
mapping_type String Yes
detail_mapping_id String Yes
label_info_id BigInt Yes
parameter_values Json No
sequence Int No
enable Boolean No
updated_user String Yes
updated_date DateTime Yes

cms_published_setting

Name Type Nullable
id BigInt Yes
resource_id BigInt Yes
territory String Yes
published_date DateTime Yes
unpublished_date DateTime Yes
show_start_date DateTime No
show_end_date DateTime No
play_start_date DateTime No
play_end_date DateTime No
parameter_values Json No
updated_user String Yes
updated_date DateTime Yes
cms_resource cms_resource Yes

cms_resource

Name Type Nullable
id BigInt Yes
key String No
code String No
type String Yes
title Json No
channel_code String Yes
licensor_id BigInt Yes
company_id String Yes
territory String Yes
default_territory String No
status String Yes
partner_resource_id String No
published_date DateTime No
unpublished_date DateTime No
enable Int Yes
updated_user String Yes
updated_date DateTime Yes
title_en String No
title_zhtw String No
title_inid String No
cms_category_mapping cms_category_mapping[] No
cms_hash_tag_mapping cms_hash_tag_mapping[] No
cms_published_setting cms_published_setting[] No
cms_resource_import_log cms_resource_import_log[] No
cms_resource_parameter cms_resource_parameter[] No
cms_resource_statistics cms_resource_statistics[] No
_count Cms_resourceCountOutputType Yes

cms_resource_import_log

Name Type Nullable
id BigInt Yes
partner_resource_id String No
channel_code String No
resource_id BigInt No
execute_process String Yes
execute_status String Yes
imp_result Json No
poster_import Int Yes
poster_type String No
video_import Int Yes
oa_task_job_id BigInt Yes
updated_user String Yes
updated_date DateTime Yes
cms_resource cms_resource No

cms_resource_parameter

Name Type Nullable
resource_id BigInt Yes
territory String Yes
master_code String No
master_key String No
master_type String No
video_id String No
duration String No
show_direction String No
sub_statuses Json No
detail Json No
description Json No
player_info Json No
posters Json No
category_info Json No
label_info Json No
hash_tag_info Json No
seo_info Json No
parameter_values Json No
updated_user String Yes
updated_date DateTime Yes
artwork_status String No
transcoding_status String No
cms_resource cms_resource Yes

cms_resource_statistics

Name Type Nullable
resource_id BigInt Yes
territory String Yes
statistics Json No
updated_user String Yes
updated_date DateTime Yes
cms_resource cms_resource Yes

oa_change_logs

Name Type Nullable
id BigInt Yes
territory String Yes
function_name String Yes
mapping_id String Yes
sub_function_name String No
sub_mapping_id String No
comment String Yes
action String Yes
before Json No
after Json No
jira_no String No
updated_user String Yes
updated_date DateTime Yes

oa_licensor

Name Type Nullable
id BigInt Yes
licensor_key String Yes
code String No
company_name String No
category String No
contact_name String No
contact_phone String No
contact_email String No
contact_mobile String No
s3_bucket_name String No
enable Boolean No
updated_user String Yes
updated_date DateTime Yes

oa_system_code

Name Type Nullable
code_type String Yes
territory String Yes
code_type_name Json No
show_sequence Int Yes
used_flag Boolean Yes
up_level_type String No
memo String No
enable Boolean Yes
created_user String Yes
created_date DateTime Yes
updated_user String Yes
updated_date DateTime Yes
code_type_name_local String No
code_type_name_eng String No

oa_system_code_detail

Name Type Nullable
id BigInt Yes
code_type String Yes
territory String Yes
code String Yes
code_group String No
value_type String No
code_name Json No
code_parameter Json No
show_sequence Int Yes
used_flag Boolean Yes
up_level_type String No
memo String No
enable Boolean Yes
created_user String Yes
created_date DateTime Yes
updated_user String Yes
updated_date DateTime Yes
code_name_local String No
code_name_eng String No

oa_task_job

Name Type Nullable
id BigInt Yes
task_label String Yes
job_name String Yes
task_name String Yes
task_target String Yes
execution_time DateTime No
execution_script String No
execution_log Json No
executed Int Yes
exec_start_date DateTime No
exec_end_date DateTime No
enable Int Yes
created_user String Yes
created_date DateTime Yes
updated_user String Yes
updated_date DateTime Yes

oa_territory

Name Type Nullable
id String Yes
code String Yes
title String No
default_territory String Yes
language String Yes
default_language String Yes
timezone String No
priority Int No
updated_user String Yes
updated_date DateTime Yes

system_function

Name Type Nullable
id String Yes
menu_id String Yes
name String Yes
show_name String Yes
icon String No
type String Yes
enable Boolean Yes
created_user String Yes
created_date DateTime Yes
updated_user String Yes
updated_date DateTime Yes

system_menu

Name Type Nullable
id String Yes
cascade_id String No
name String Yes
pathname String Yes
icon String No
show_in_menu Boolean Yes
is_web_page Boolean Yes
is_need_login Boolean Yes
parent_id String No
table_memo String No
sort Int Yes
enable Boolean Yes
created_user String Yes
created_date DateTime Yes
updated_user String Yes
updated_date DateTime Yes

system_relevance

Name Type Nullable
id String Yes
memo String No
type String Yes
first_id String Yes
second_id String Yes
third_id String No
enable Boolean Yes
created_user String Yes
created_date DateTime Yes
updated_user String Yes
updated_date DateTime Yes

system_role

Name Type Nullable
id String Yes
code String Yes
name String Yes
enable Boolean Yes
created_user String Yes
created_date DateTime Yes
updated_user String Yes
updated_date DateTime Yes

system_user

Name Type Nullable
id String Yes
provider_id String Yes
provider String Yes
display_name String Yes
family_name String Yes
given_name String Yes
email String Yes
email_verified Boolean No
password String Yes
language String Yes
locale String No
picture String No
enable Boolean Yes
created_user String Yes
created_date DateTime Yes
updated_user String Yes
updated_date DateTime Yes

Account

Name Type Nullable
id String Yes
userId String Yes
type String Yes
provider String Yes
providerAccountId String Yes
refresh_token String No
access_token String No
expires_at Int No
token_type String No
scope String No
id_token String No
session_state String No
user User Yes

Session

Name Type Nullable
id String Yes
sessionToken String Yes
userId String Yes
expires DateTime Yes
user User Yes

User

Name Type Nullable
id String Yes
name String No
email String No
emailVerified DateTime No
image String No
accounts Account[] No
sessions Session[] No
_count UserCountOutputType Yes

VerificationToken

Name Type Nullable
identifier String Yes
token String Yes
expires DateTime Yes


Cms_categoryGroupByOutputType

Name Type Nullable
id BigInt Yes
territory String Yes
key String Yes
code String Yes
title Json No
on_used Boolean Yes
sequence Int No
statistics Json No
parameter_values Json No
updated_user String Yes
updated_date DateTime Yes
_count Cms_categoryCountAggregateOutputType No
_avg Cms_categoryAvgAggregateOutputType No
_sum Cms_categorySumAggregateOutputType No
_min Cms_categoryMinAggregateOutputType No
_max Cms_categoryMaxAggregateOutputType No


Cms_category_mappingGroupByOutputType

Name Type Nullable
id BigInt Yes
resource_id BigInt Yes
category_id BigInt Yes
parameter_values Json No
sequence Int No
enable Boolean No
updated_user String Yes
updated_date DateTime Yes
_count Cms_category_mappingCountAggregateOutputType No
_avg Cms_category_mappingAvgAggregateOutputType No
_sum Cms_category_mappingSumAggregateOutputType No
_min Cms_category_mappingMinAggregateOutputType No
_max Cms_category_mappingMaxAggregateOutputType No


Cms_channelGroupByOutputType

Name Type Nullable
id BigInt Yes
licensor_id BigInt Yes
code String Yes
handle String Yes
title Json No
image Json No
description Json No
statistics Json No
parameter_values Json No
seo_info Json No
territory String Yes
default_territory String Yes
created_date DateTime No
updated_user String Yes
updated_date DateTime Yes
title_en String No
title_zhtw String No
title_inid String No
_count Cms_channelCountAggregateOutputType No
_avg Cms_channelAvgAggregateOutputType No
_sum Cms_channelSumAggregateOutputType No
_min Cms_channelMinAggregateOutputType No
_max Cms_channelMaxAggregateOutputType No


Cms_curationGroupByOutputType

Name Type Nullable
id BigInt Yes
key String No
code String No
title Json No
company_id String Yes
territory String Yes
default_territory String No
status String Yes
detail_parameter Json No
updated_user String Yes
updated_date DateTime Yes
title_en String No
title_zhtw String No
title_inid String No
_count Cms_curationCountAggregateOutputType No
_avg Cms_curationAvgAggregateOutputType No
_sum Cms_curationSumAggregateOutputType No
_min Cms_curationMinAggregateOutputType No
_max Cms_curationMaxAggregateOutputType No


Cms_curation_mappingGroupByOutputType

Name Type Nullable
id BigInt Yes
resource_id BigInt Yes
curation_id BigInt Yes
edited Boolean No
sequence Int No
parameter_values Json No
updated_user String Yes
updated_date DateTime Yes
_count Cms_curation_mappingCountAggregateOutputType No
_avg Cms_curation_mappingAvgAggregateOutputType No
_sum Cms_curation_mappingSumAggregateOutputType No
_min Cms_curation_mappingMinAggregateOutputType No
_max Cms_curation_mappingMaxAggregateOutputType No


Cms_curation_schedulingGroupByOutputType

Name Type Nullable
id BigInt Yes
curation_id BigInt Yes
title Json No
key String No
territory String No
description String Yes
status String Yes
published_date DateTime No
synchronized Boolean Yes
enabled Boolean Yes
created_user String Yes
created_date DateTime Yes
updated_user String Yes
updated_date DateTime Yes
_count Cms_curation_schedulingCountAggregateOutputType No
_avg Cms_curation_schedulingAvgAggregateOutputType No
_sum Cms_curation_schedulingSumAggregateOutputType No
_min Cms_curation_schedulingMinAggregateOutputType No
_max Cms_curation_schedulingMaxAggregateOutputType No


Cms_curation_scheduling_itemGroupByOutputType

Name Type Nullable
id BigInt Yes
parent_id BigInt Yes
resource_id BigInt Yes
curation_id BigInt Yes
parameter_values Json No
sequence Int No
updated_user String Yes
updated_date DateTime Yes
_count Cms_curation_scheduling_itemCountAggregateOutputType No
_avg Cms_curation_scheduling_itemAvgAggregateOutputType No
_sum Cms_curation_scheduling_itemSumAggregateOutputType No
_min Cms_curation_scheduling_itemMinAggregateOutputType No
_max Cms_curation_scheduling_itemMaxAggregateOutputType No


Cms_hash_tagGroupByOutputType

Name Type Nullable
id BigInt Yes
title String Yes
sequence Int No
statistics Json No
updated_user String Yes
updated_date DateTime Yes
_count Cms_hash_tagCountAggregateOutputType No
_avg Cms_hash_tagAvgAggregateOutputType No
_sum Cms_hash_tagSumAggregateOutputType No
_min Cms_hash_tagMinAggregateOutputType No
_max Cms_hash_tagMaxAggregateOutputType No


Cms_hash_tag_mappingGroupByOutputType

Name Type Nullable
id BigInt Yes
resource_id BigInt Yes
hash_tag_id BigInt Yes
parameter_values Json No
sequence Int No
enable Boolean No
updated_user String Yes
updated_date DateTime Yes
_count Cms_hash_tag_mappingCountAggregateOutputType No
_avg Cms_hash_tag_mappingAvgAggregateOutputType No
_sum Cms_hash_tag_mappingSumAggregateOutputType No
_min Cms_hash_tag_mappingMinAggregateOutputType No
_max Cms_hash_tag_mappingMaxAggregateOutputType No


Cms_label_infoGroupByOutputType

Name Type Nullable
id BigInt Yes
key String No
title Json No
sequence Int No
statistics Json No
parameter_values Json No
updated_user String Yes
updated_date DateTime Yes
title_en String No
title_zhtw String No
title_inid String No
_count Cms_label_infoCountAggregateOutputType No
_avg Cms_label_infoAvgAggregateOutputType No
_sum Cms_label_infoSumAggregateOutputType No
_min Cms_label_infoMinAggregateOutputType No
_max Cms_label_infoMaxAggregateOutputType No


Cms_label_info_mappingGroupByOutputType

Name Type Nullable
id BigInt Yes
mapping_type String Yes
detail_mapping_id String Yes
label_info_id BigInt Yes
parameter_values Json No
sequence Int No
enable Boolean No
updated_user String Yes
updated_date DateTime Yes
_count Cms_label_info_mappingCountAggregateOutputType No
_avg Cms_label_info_mappingAvgAggregateOutputType No
_sum Cms_label_info_mappingSumAggregateOutputType No
_min Cms_label_info_mappingMinAggregateOutputType No
_max Cms_label_info_mappingMaxAggregateOutputType No


Cms_published_settingGroupByOutputType

Name Type Nullable
id BigInt Yes
resource_id BigInt Yes
territory String Yes
published_date DateTime Yes
unpublished_date DateTime Yes
show_start_date DateTime No
show_end_date DateTime No
play_start_date DateTime No
play_end_date DateTime No
parameter_values Json No
updated_user String Yes
updated_date DateTime Yes
_count Cms_published_settingCountAggregateOutputType No
_avg Cms_published_settingAvgAggregateOutputType No
_sum Cms_published_settingSumAggregateOutputType No
_min Cms_published_settingMinAggregateOutputType No
_max Cms_published_settingMaxAggregateOutputType No


Cms_resourceGroupByOutputType

Name Type Nullable
id BigInt Yes
key String No
code String No
type String Yes
title Json No
channel_code String Yes
licensor_id BigInt Yes
company_id String Yes
territory String Yes
default_territory String No
status String Yes
partner_resource_id String No
published_date DateTime No
unpublished_date DateTime No
enable Int Yes
updated_user String Yes
updated_date DateTime Yes
title_en String No
title_zhtw String No
title_inid String No
_count Cms_resourceCountAggregateOutputType No
_avg Cms_resourceAvgAggregateOutputType No
_sum Cms_resourceSumAggregateOutputType No
_min Cms_resourceMinAggregateOutputType No
_max Cms_resourceMaxAggregateOutputType No


Cms_resource_import_logGroupByOutputType

Name Type Nullable
id BigInt Yes
partner_resource_id String No
channel_code String No
resource_id BigInt No
execute_process String Yes
execute_status String Yes
imp_result Json No
poster_import Int Yes
poster_type String No
video_import Int Yes
oa_task_job_id BigInt Yes
updated_user String Yes
updated_date DateTime Yes
_count Cms_resource_import_logCountAggregateOutputType No
_avg Cms_resource_import_logAvgAggregateOutputType No
_sum Cms_resource_import_logSumAggregateOutputType No
_min Cms_resource_import_logMinAggregateOutputType No
_max Cms_resource_import_logMaxAggregateOutputType No


Cms_resource_parameterGroupByOutputType

Name Type Nullable
resource_id BigInt Yes
territory String Yes
master_code String No
master_key String No
master_type String No
video_id String No
duration String No
show_direction String No
sub_statuses Json No
detail Json No
description Json No
player_info Json No
posters Json No
category_info Json No
label_info Json No
hash_tag_info Json No
seo_info Json No
parameter_values Json No
updated_user String Yes
updated_date DateTime Yes
artwork_status String No
transcoding_status String No
_count Cms_resource_parameterCountAggregateOutputType No
_avg Cms_resource_parameterAvgAggregateOutputType No
_sum Cms_resource_parameterSumAggregateOutputType No
_min Cms_resource_parameterMinAggregateOutputType No
_max Cms_resource_parameterMaxAggregateOutputType No


Cms_resource_statisticsGroupByOutputType

Name Type Nullable
resource_id BigInt Yes
territory String Yes
statistics Json No
updated_user String Yes
updated_date DateTime Yes
_count Cms_resource_statisticsCountAggregateOutputType No
_avg Cms_resource_statisticsAvgAggregateOutputType No
_sum Cms_resource_statisticsSumAggregateOutputType No
_min Cms_resource_statisticsMinAggregateOutputType No
_max Cms_resource_statisticsMaxAggregateOutputType No


Oa_change_logsGroupByOutputType

Name Type Nullable
id BigInt Yes
territory String Yes
function_name String Yes
mapping_id String Yes
sub_function_name String No
sub_mapping_id String No
comment String Yes
action String Yes
before Json No
after Json No
jira_no String No
updated_user String Yes
updated_date DateTime Yes
_count Oa_change_logsCountAggregateOutputType No
_avg Oa_change_logsAvgAggregateOutputType No
_sum Oa_change_logsSumAggregateOutputType No
_min Oa_change_logsMinAggregateOutputType No
_max Oa_change_logsMaxAggregateOutputType No


Oa_licensorGroupByOutputType

Name Type Nullable
id BigInt Yes
licensor_key String Yes
code String No
company_name String No
category String No
contact_name String No
contact_phone String No
contact_email String No
contact_mobile String No
s3_bucket_name String No
enable Boolean No
updated_user String Yes
updated_date DateTime Yes
_count Oa_licensorCountAggregateOutputType No
_avg Oa_licensorAvgAggregateOutputType No
_sum Oa_licensorSumAggregateOutputType No
_min Oa_licensorMinAggregateOutputType No
_max Oa_licensorMaxAggregateOutputType No


Oa_system_codeGroupByOutputType

Name Type Nullable
code_type String Yes
territory String Yes
code_type_name Json No
show_sequence Int Yes
used_flag Boolean Yes
up_level_type String No
memo String No
enable Boolean Yes
created_user String Yes
created_date DateTime Yes
updated_user String Yes
updated_date DateTime Yes
code_type_name_local String No
code_type_name_eng String No
_count Oa_system_codeCountAggregateOutputType No
_avg Oa_system_codeAvgAggregateOutputType No
_sum Oa_system_codeSumAggregateOutputType No
_min Oa_system_codeMinAggregateOutputType No
_max Oa_system_codeMaxAggregateOutputType No


Oa_system_code_detailGroupByOutputType

Name Type Nullable
id BigInt Yes
code_type String Yes
territory String Yes
code String Yes
code_group String No
value_type String No
code_name Json No
code_parameter Json No
show_sequence Int Yes
used_flag Boolean Yes
up_level_type String No
memo String No
enable Boolean Yes
created_user String Yes
created_date DateTime Yes
updated_user String Yes
updated_date DateTime Yes
code_name_local String No
code_name_eng String No
_count Oa_system_code_detailCountAggregateOutputType No
_avg Oa_system_code_detailAvgAggregateOutputType No
_sum Oa_system_code_detailSumAggregateOutputType No
_min Oa_system_code_detailMinAggregateOutputType No
_max Oa_system_code_detailMaxAggregateOutputType No


Oa_task_jobGroupByOutputType

Name Type Nullable
id BigInt Yes
task_label String Yes
job_name String Yes
task_name String Yes
task_target String Yes
execution_time DateTime No
execution_script String No
execution_log Json No
executed Int Yes
exec_start_date DateTime No
exec_end_date DateTime No
enable Int Yes
created_user String Yes
created_date DateTime Yes
updated_user String Yes
updated_date DateTime Yes
_count Oa_task_jobCountAggregateOutputType No
_avg Oa_task_jobAvgAggregateOutputType No
_sum Oa_task_jobSumAggregateOutputType No
_min Oa_task_jobMinAggregateOutputType No
_max Oa_task_jobMaxAggregateOutputType No


Oa_territoryGroupByOutputType

Name Type Nullable
id String Yes
code String Yes
title String No
default_territory String Yes
language String Yes
default_language String Yes
timezone String No
priority Int No
updated_user String Yes
updated_date DateTime Yes
_count Oa_territoryCountAggregateOutputType No
_avg Oa_territoryAvgAggregateOutputType No
_sum Oa_territorySumAggregateOutputType No
_min Oa_territoryMinAggregateOutputType No
_max Oa_territoryMaxAggregateOutputType No


System_functionGroupByOutputType

Name Type Nullable
id String Yes
menu_id String Yes
name String Yes
show_name String Yes
icon String No
type String Yes
enable Boolean Yes
created_user String Yes
created_date DateTime Yes
updated_user String Yes
updated_date DateTime Yes
_count System_functionCountAggregateOutputType No
_min System_functionMinAggregateOutputType No
_max System_functionMaxAggregateOutputType No


System_menuGroupByOutputType

Name Type Nullable
id String Yes
cascade_id String No
name String Yes
pathname String Yes
icon String No
show_in_menu Boolean Yes
is_web_page Boolean Yes
is_need_login Boolean Yes
parent_id String No
table_memo String No
sort Int Yes
enable Boolean Yes
created_user String Yes
created_date DateTime Yes
updated_user String Yes
updated_date DateTime Yes
_count System_menuCountAggregateOutputType No
_avg System_menuAvgAggregateOutputType No
_sum System_menuSumAggregateOutputType No
_min System_menuMinAggregateOutputType No
_max System_menuMaxAggregateOutputType No


System_relevanceGroupByOutputType

Name Type Nullable
id String Yes
memo String No
type String Yes
first_id String Yes
second_id String Yes
third_id String No
enable Boolean Yes
created_user String Yes
created_date DateTime Yes
updated_user String Yes
updated_date DateTime Yes
_count System_relevanceCountAggregateOutputType No
_min System_relevanceMinAggregateOutputType No
_max System_relevanceMaxAggregateOutputType No

AggregateSystem_role

Name Type Nullable
_count System_roleCountAggregateOutputType No
_min System_roleMinAggregateOutputType No
_max System_roleMaxAggregateOutputType No

System_roleGroupByOutputType

Name Type Nullable
id String Yes
code String Yes
name String Yes
enable Boolean Yes
created_user String Yes
created_date DateTime Yes
updated_user String Yes
updated_date DateTime Yes
_count System_roleCountAggregateOutputType No
_min System_roleMinAggregateOutputType No
_max System_roleMaxAggregateOutputType No

AggregateSystem_user

Name Type Nullable
_count System_userCountAggregateOutputType No
_min System_userMinAggregateOutputType No
_max System_userMaxAggregateOutputType No

System_userGroupByOutputType

Name Type Nullable
id String Yes
provider_id String Yes
provider String Yes
display_name String Yes
family_name String Yes
given_name String Yes
email String Yes
email_verified Boolean No
password String Yes
language String Yes
locale String No
picture String No
enable Boolean Yes
created_user String Yes
created_date DateTime Yes
updated_user String Yes
updated_date DateTime Yes
_count System_userCountAggregateOutputType No
_min System_userMinAggregateOutputType No
_max System_userMaxAggregateOutputType No


AccountGroupByOutputType

Name Type Nullable
id String Yes
userId String Yes
type String Yes
provider String Yes
providerAccountId String Yes
refresh_token String No
access_token String No
expires_at Int No
token_type String No
scope String No
id_token String No
session_state String No
_count AccountCountAggregateOutputType No
_avg AccountAvgAggregateOutputType No
_sum AccountSumAggregateOutputType No
_min AccountMinAggregateOutputType No
_max AccountMaxAggregateOutputType No

AggregateSession

Name Type Nullable
_count SessionCountAggregateOutputType No
_min SessionMinAggregateOutputType No
_max SessionMaxAggregateOutputType No

SessionGroupByOutputType

Name Type Nullable
id String Yes
sessionToken String Yes
userId String Yes
expires DateTime Yes
_count SessionCountAggregateOutputType No
_min SessionMinAggregateOutputType No
_max SessionMaxAggregateOutputType No

AggregateUser

Name Type Nullable
_count UserCountAggregateOutputType No
_min UserMinAggregateOutputType No
_max UserMaxAggregateOutputType No

UserGroupByOutputType

Name Type Nullable
id String Yes
name String No
email String No
emailVerified DateTime No
image String No
_count UserCountAggregateOutputType No
_min UserMinAggregateOutputType No
_max UserMaxAggregateOutputType No


VerificationTokenGroupByOutputType

Name Type Nullable
identifier String Yes
token String Yes
expires DateTime Yes
_count VerificationTokenCountAggregateOutputType No
_min VerificationTokenMinAggregateOutputType No
_max VerificationTokenMaxAggregateOutputType No

AffectedRowsOutput

Name Type Nullable
count Int Yes

Cms_categoryCountOutputType

Name Type Nullable
cms_category_mapping Int Yes

Cms_categoryCountAggregateOutputType

Name Type Nullable
id Int Yes
territory Int Yes
key Int Yes
code Int Yes
title Int Yes
on_used Int Yes
sequence Int Yes
statistics Int Yes
parameter_values Int Yes
updated_user Int Yes
updated_date Int Yes
_all Int Yes

Cms_categoryAvgAggregateOutputType

Name Type Nullable
id Float No
sequence Float No

Cms_categorySumAggregateOutputType

Name Type Nullable
id BigInt No
sequence Int No

Cms_categoryMinAggregateOutputType

Name Type Nullable
id BigInt No
territory String No
key String No
code String No
on_used Boolean No
sequence Int No
updated_user String No
updated_date DateTime No

Cms_categoryMaxAggregateOutputType

Name Type Nullable
id BigInt No
territory String No
key String No
code String No
on_used Boolean No
sequence Int No
updated_user String No
updated_date DateTime No

Cms_category_mappingCountAggregateOutputType

Name Type Nullable
id Int Yes
resource_id Int Yes
category_id Int Yes
parameter_values Int Yes
sequence Int Yes
enable Int Yes
updated_user Int Yes
updated_date Int Yes
_all Int Yes

Cms_category_mappingAvgAggregateOutputType

Name Type Nullable
id Float No
resource_id Float No
category_id Float No
sequence Float No

Cms_category_mappingSumAggregateOutputType

Name Type Nullable
id BigInt No
resource_id BigInt No
category_id BigInt No
sequence Int No

Cms_category_mappingMinAggregateOutputType

Name Type Nullable
id BigInt No
resource_id BigInt No
category_id BigInt No
sequence Int No
enable Boolean No
updated_user String No
updated_date DateTime No

Cms_category_mappingMaxAggregateOutputType

Name Type Nullable
id BigInt No
resource_id BigInt No
category_id BigInt No
sequence Int No
enable Boolean No
updated_user String No
updated_date DateTime No

Cms_channelCountAggregateOutputType

Name Type Nullable
id Int Yes
licensor_id Int Yes
code Int Yes
handle Int Yes
title Int Yes
image Int Yes
description Int Yes
statistics Int Yes
parameter_values Int Yes
seo_info Int Yes
territory Int Yes
default_territory Int Yes
created_date Int Yes
updated_user Int Yes
updated_date Int Yes
title_en Int Yes
title_zhtw Int Yes
title_inid Int Yes
_all Int Yes

Cms_channelAvgAggregateOutputType

Name Type Nullable
id Float No
licensor_id Float No

Cms_channelSumAggregateOutputType

Name Type Nullable
id BigInt No
licensor_id BigInt No

Cms_channelMinAggregateOutputType

Name Type Nullable
id BigInt No
licensor_id BigInt No
code String No
handle String No
territory String No
default_territory String No
created_date DateTime No
updated_user String No
updated_date DateTime No
title_en String No
title_zhtw String No
title_inid String No

Cms_channelMaxAggregateOutputType

Name Type Nullable
id BigInt No
licensor_id BigInt No
code String No
handle String No
territory String No
default_territory String No
created_date DateTime No
updated_user String No
updated_date DateTime No
title_en String No
title_zhtw String No
title_inid String No

Cms_curationCountOutputType

Name Type Nullable
cms_curation_mapping Int Yes

Cms_curationCountAggregateOutputType

Name Type Nullable
id Int Yes
key Int Yes
code Int Yes
title Int Yes
company_id Int Yes
territory Int Yes
default_territory Int Yes
status Int Yes
detail_parameter Int Yes
updated_user Int Yes
updated_date Int Yes
title_en Int Yes
title_zhtw Int Yes
title_inid Int Yes
_all Int Yes

Cms_curationAvgAggregateOutputType

Name Type Nullable
id Float No

Cms_curationSumAggregateOutputType

Name Type Nullable
id BigInt No

Cms_curationMinAggregateOutputType

Name Type Nullable
id BigInt No
key String No
code String No
company_id String No
territory String No
default_territory String No
status String No
updated_user String No
updated_date DateTime No
title_en String No
title_zhtw String No
title_inid String No

Cms_curationMaxAggregateOutputType

Name Type Nullable
id BigInt No
key String No
code String No
company_id String No
territory String No
default_territory String No
status String No
updated_user String No
updated_date DateTime No
title_en String No
title_zhtw String No
title_inid String No

Cms_curation_mappingCountAggregateOutputType

Name Type Nullable
id Int Yes
resource_id Int Yes
curation_id Int Yes
edited Int Yes
sequence Int Yes
parameter_values Int Yes
updated_user Int Yes
updated_date Int Yes
_all Int Yes

Cms_curation_mappingAvgAggregateOutputType

Name Type Nullable
id Float No
resource_id Float No
curation_id Float No
sequence Float No

Cms_curation_mappingSumAggregateOutputType

Name Type Nullable
id BigInt No
resource_id BigInt No
curation_id BigInt No
sequence Int No

Cms_curation_mappingMinAggregateOutputType

Name Type Nullable
id BigInt No
resource_id BigInt No
curation_id BigInt No
edited Boolean No
sequence Int No
updated_user String No
updated_date DateTime No

Cms_curation_mappingMaxAggregateOutputType

Name Type Nullable
id BigInt No
resource_id BigInt No
curation_id BigInt No
edited Boolean No
sequence Int No
updated_user String No
updated_date DateTime No

Cms_curation_schedulingCountOutputType

Name Type Nullable
cms_curation_scheduling_item Int Yes

Cms_curation_schedulingCountAggregateOutputType

Name Type Nullable
id Int Yes
curation_id Int Yes
title Int Yes
key Int Yes
territory Int Yes
description Int Yes
status Int Yes
published_date Int Yes
synchronized Int Yes
enabled Int Yes
created_user Int Yes
created_date Int Yes
updated_user Int Yes
updated_date Int Yes
_all Int Yes

Cms_curation_schedulingAvgAggregateOutputType

Name Type Nullable
id Float No
curation_id Float No

Cms_curation_schedulingSumAggregateOutputType

Name Type Nullable
id BigInt No
curation_id BigInt No

Cms_curation_schedulingMinAggregateOutputType

Name Type Nullable
id BigInt No
curation_id BigInt No
key String No
territory String No
description String No
status String No
published_date DateTime No
synchronized Boolean No
enabled Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

Cms_curation_schedulingMaxAggregateOutputType

Name Type Nullable
id BigInt No
curation_id BigInt No
key String No
territory String No
description String No
status String No
published_date DateTime No
synchronized Boolean No
enabled Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

Cms_curation_scheduling_itemCountAggregateOutputType

Name Type Nullable
id Int Yes
parent_id Int Yes
resource_id Int Yes
curation_id Int Yes
parameter_values Int Yes
sequence Int Yes
updated_user Int Yes
updated_date Int Yes
_all Int Yes

Cms_curation_scheduling_itemAvgAggregateOutputType

Name Type Nullable
id Float No
parent_id Float No
resource_id Float No
curation_id Float No
sequence Float No

Cms_curation_scheduling_itemSumAggregateOutputType

Name Type Nullable
id BigInt No
parent_id BigInt No
resource_id BigInt No
curation_id BigInt No
sequence Int No

Cms_curation_scheduling_itemMinAggregateOutputType

Name Type Nullable
id BigInt No
parent_id BigInt No
resource_id BigInt No
curation_id BigInt No
sequence Int No
updated_user String No
updated_date DateTime No

Cms_curation_scheduling_itemMaxAggregateOutputType

Name Type Nullable
id BigInt No
parent_id BigInt No
resource_id BigInt No
curation_id BigInt No
sequence Int No
updated_user String No
updated_date DateTime No

Cms_hash_tagCountOutputType

Name Type Nullable
cms_hash_tag_mapping Int Yes

Cms_hash_tagCountAggregateOutputType

Name Type Nullable
id Int Yes
title Int Yes
sequence Int Yes
statistics Int Yes
updated_user Int Yes
updated_date Int Yes
_all Int Yes

Cms_hash_tagAvgAggregateOutputType

Name Type Nullable
id Float No
sequence Float No

Cms_hash_tagSumAggregateOutputType

Name Type Nullable
id BigInt No
sequence Int No

Cms_hash_tagMinAggregateOutputType

Name Type Nullable
id BigInt No
title String No
sequence Int No
updated_user String No
updated_date DateTime No

Cms_hash_tagMaxAggregateOutputType

Name Type Nullable
id BigInt No
title String No
sequence Int No
updated_user String No
updated_date DateTime No

Cms_hash_tag_mappingCountAggregateOutputType

Name Type Nullable
id Int Yes
resource_id Int Yes
hash_tag_id Int Yes
parameter_values Int Yes
sequence Int Yes
enable Int Yes
updated_user Int Yes
updated_date Int Yes
_all Int Yes

Cms_hash_tag_mappingAvgAggregateOutputType

Name Type Nullable
id Float No
resource_id Float No
hash_tag_id Float No
sequence Float No

Cms_hash_tag_mappingSumAggregateOutputType

Name Type Nullable
id BigInt No
resource_id BigInt No
hash_tag_id BigInt No
sequence Int No

Cms_hash_tag_mappingMinAggregateOutputType

Name Type Nullable
id BigInt No
resource_id BigInt No
hash_tag_id BigInt No
sequence Int No
enable Boolean No
updated_user String No
updated_date DateTime No

Cms_hash_tag_mappingMaxAggregateOutputType

Name Type Nullable
id BigInt No
resource_id BigInt No
hash_tag_id BigInt No
sequence Int No
enable Boolean No
updated_user String No
updated_date DateTime No

Cms_label_infoCountAggregateOutputType

Name Type Nullable
id Int Yes
key Int Yes
title Int Yes
sequence Int Yes
statistics Int Yes
parameter_values Int Yes
updated_user Int Yes
updated_date Int Yes
title_en Int Yes
title_zhtw Int Yes
title_inid Int Yes
_all Int Yes

Cms_label_infoAvgAggregateOutputType

Name Type Nullable
id Float No
sequence Float No

Cms_label_infoSumAggregateOutputType

Name Type Nullable
id BigInt No
sequence Int No

Cms_label_infoMinAggregateOutputType

Name Type Nullable
id BigInt No
key String No
sequence Int No
updated_user String No
updated_date DateTime No
title_en String No
title_zhtw String No
title_inid String No

Cms_label_infoMaxAggregateOutputType

Name Type Nullable
id BigInt No
key String No
sequence Int No
updated_user String No
updated_date DateTime No
title_en String No
title_zhtw String No
title_inid String No

Cms_label_info_mappingCountAggregateOutputType

Name Type Nullable
id Int Yes
mapping_type Int Yes
detail_mapping_id Int Yes
label_info_id Int Yes
parameter_values Int Yes
sequence Int Yes
enable Int Yes
updated_user Int Yes
updated_date Int Yes
_all Int Yes

Cms_label_info_mappingAvgAggregateOutputType

Name Type Nullable
id Float No
label_info_id Float No
sequence Float No

Cms_label_info_mappingSumAggregateOutputType

Name Type Nullable
id BigInt No
label_info_id BigInt No
sequence Int No

Cms_label_info_mappingMinAggregateOutputType

Name Type Nullable
id BigInt No
mapping_type String No
detail_mapping_id String No
label_info_id BigInt No
sequence Int No
enable Boolean No
updated_user String No
updated_date DateTime No

Cms_label_info_mappingMaxAggregateOutputType

Name Type Nullable
id BigInt No
mapping_type String No
detail_mapping_id String No
label_info_id BigInt No
sequence Int No
enable Boolean No
updated_user String No
updated_date DateTime No

Cms_published_settingCountAggregateOutputType

Name Type Nullable
id Int Yes
resource_id Int Yes
territory Int Yes
published_date Int Yes
unpublished_date Int Yes
show_start_date Int Yes
show_end_date Int Yes
play_start_date Int Yes
play_end_date Int Yes
parameter_values Int Yes
updated_user Int Yes
updated_date Int Yes
_all Int Yes

Cms_published_settingAvgAggregateOutputType

Name Type Nullable
id Float No
resource_id Float No

Cms_published_settingSumAggregateOutputType

Name Type Nullable
id BigInt No
resource_id BigInt No

Cms_published_settingMinAggregateOutputType

Name Type Nullable
id BigInt No
resource_id BigInt No
territory String No
published_date DateTime No
unpublished_date DateTime No
show_start_date DateTime No
show_end_date DateTime No
play_start_date DateTime No
play_end_date DateTime No
updated_user String No
updated_date DateTime No

Cms_published_settingMaxAggregateOutputType

Name Type Nullable
id BigInt No
resource_id BigInt No
territory String No
published_date DateTime No
unpublished_date DateTime No
show_start_date DateTime No
show_end_date DateTime No
play_start_date DateTime No
play_end_date DateTime No
updated_user String No
updated_date DateTime No

Cms_resourceCountOutputType

Name Type Nullable
cms_category_mapping Int Yes
cms_hash_tag_mapping Int Yes
cms_published_setting Int Yes
cms_resource_import_log Int Yes
cms_resource_parameter Int Yes
cms_resource_statistics Int Yes

Cms_resourceCountAggregateOutputType

Name Type Nullable
id Int Yes
key Int Yes
code Int Yes
type Int Yes
title Int Yes
channel_code Int Yes
licensor_id Int Yes
company_id Int Yes
territory Int Yes
default_territory Int Yes
status Int Yes
partner_resource_id Int Yes
published_date Int Yes
unpublished_date Int Yes
enable Int Yes
updated_user Int Yes
updated_date Int Yes
title_en Int Yes
title_zhtw Int Yes
title_inid Int Yes
_all Int Yes

Cms_resourceAvgAggregateOutputType

Name Type Nullable
id Float No
licensor_id Float No
enable Float No

Cms_resourceSumAggregateOutputType

Name Type Nullable
id BigInt No
licensor_id BigInt No
enable Int No

Cms_resourceMinAggregateOutputType

Name Type Nullable
id BigInt No
key String No
code String No
type String No
channel_code String No
licensor_id BigInt No
company_id String No
territory String No
default_territory String No
status String No
partner_resource_id String No
published_date DateTime No
unpublished_date DateTime No
enable Int No
updated_user String No
updated_date DateTime No
title_en String No
title_zhtw String No
title_inid String No

Cms_resourceMaxAggregateOutputType

Name Type Nullable
id BigInt No
key String No
code String No
type String No
channel_code String No
licensor_id BigInt No
company_id String No
territory String No
default_territory String No
status String No
partner_resource_id String No
published_date DateTime No
unpublished_date DateTime No
enable Int No
updated_user String No
updated_date DateTime No
title_en String No
title_zhtw String No
title_inid String No

Cms_resource_import_logCountAggregateOutputType

Name Type Nullable
id Int Yes
partner_resource_id Int Yes
channel_code Int Yes
resource_id Int Yes
execute_process Int Yes
execute_status Int Yes
imp_result Int Yes
poster_import Int Yes
poster_type Int Yes
video_import Int Yes
oa_task_job_id Int Yes
updated_user Int Yes
updated_date Int Yes
_all Int Yes

Cms_resource_import_logAvgAggregateOutputType

Name Type Nullable
id Float No
resource_id Float No
poster_import Float No
video_import Float No
oa_task_job_id Float No

Cms_resource_import_logSumAggregateOutputType

Name Type Nullable
id BigInt No
resource_id BigInt No
poster_import Int No
video_import Int No
oa_task_job_id BigInt No

Cms_resource_import_logMinAggregateOutputType

Name Type Nullable
id BigInt No
partner_resource_id String No
channel_code String No
resource_id BigInt No
execute_process String No
execute_status String No
poster_import Int No
poster_type String No
video_import Int No
oa_task_job_id BigInt No
updated_user String No
updated_date DateTime No

Cms_resource_import_logMaxAggregateOutputType

Name Type Nullable
id BigInt No
partner_resource_id String No
channel_code String No
resource_id BigInt No
execute_process String No
execute_status String No
poster_import Int No
poster_type String No
video_import Int No
oa_task_job_id BigInt No
updated_user String No
updated_date DateTime No

Cms_resource_parameterCountAggregateOutputType

Name Type Nullable
resource_id Int Yes
territory Int Yes
master_code Int Yes
master_key Int Yes
master_type Int Yes
video_id Int Yes
duration Int Yes
show_direction Int Yes
sub_statuses Int Yes
detail Int Yes
description Int Yes
player_info Int Yes
posters Int Yes
category_info Int Yes
label_info Int Yes
hash_tag_info Int Yes
seo_info Int Yes
parameter_values Int Yes
updated_user Int Yes
updated_date Int Yes
artwork_status Int Yes
transcoding_status Int Yes
_all Int Yes

Cms_resource_parameterAvgAggregateOutputType

Name Type Nullable
resource_id Float No

Cms_resource_parameterSumAggregateOutputType

Name Type Nullable
resource_id BigInt No

Cms_resource_parameterMinAggregateOutputType

Name Type Nullable
resource_id BigInt No
territory String No
master_code String No
master_key String No
master_type String No
video_id String No
duration String No
show_direction String No
updated_user String No
updated_date DateTime No
artwork_status String No
transcoding_status String No

Cms_resource_parameterMaxAggregateOutputType

Name Type Nullable
resource_id BigInt No
territory String No
master_code String No
master_key String No
master_type String No
video_id String No
duration String No
show_direction String No
updated_user String No
updated_date DateTime No
artwork_status String No
transcoding_status String No

Cms_resource_statisticsCountAggregateOutputType

Name Type Nullable
resource_id Int Yes
territory Int Yes
statistics Int Yes
updated_user Int Yes
updated_date Int Yes
_all Int Yes

Cms_resource_statisticsAvgAggregateOutputType

Name Type Nullable
resource_id Float No

Cms_resource_statisticsSumAggregateOutputType

Name Type Nullable
resource_id BigInt No

Cms_resource_statisticsMinAggregateOutputType

Name Type Nullable
resource_id BigInt No
territory String No
updated_user String No
updated_date DateTime No

Cms_resource_statisticsMaxAggregateOutputType

Name Type Nullable
resource_id BigInt No
territory String No
updated_user String No
updated_date DateTime No

Oa_change_logsCountAggregateOutputType

Name Type Nullable
id Int Yes
territory Int Yes
function_name Int Yes
mapping_id Int Yes
sub_function_name Int Yes
sub_mapping_id Int Yes
comment Int Yes
action Int Yes
before Int Yes
after Int Yes
jira_no Int Yes
updated_user Int Yes
updated_date Int Yes
_all Int Yes

Oa_change_logsAvgAggregateOutputType

Name Type Nullable
id Float No

Oa_change_logsSumAggregateOutputType

Name Type Nullable
id BigInt No

Oa_change_logsMinAggregateOutputType

Name Type Nullable
id BigInt No
territory String No
function_name String No
mapping_id String No
sub_function_name String No
sub_mapping_id String No
comment String No
action String No
jira_no String No
updated_user String No
updated_date DateTime No

Oa_change_logsMaxAggregateOutputType

Name Type Nullable
id BigInt No
territory String No
function_name String No
mapping_id String No
sub_function_name String No
sub_mapping_id String No
comment String No
action String No
jira_no String No
updated_user String No
updated_date DateTime No

Oa_licensorCountAggregateOutputType

Name Type Nullable
id Int Yes
licensor_key Int Yes
code Int Yes
company_name Int Yes
category Int Yes
contact_name Int Yes
contact_phone Int Yes
contact_email Int Yes
contact_mobile Int Yes
s3_bucket_name Int Yes
enable Int Yes
updated_user Int Yes
updated_date Int Yes
_all Int Yes

Oa_licensorAvgAggregateOutputType

Name Type Nullable
id Float No

Oa_licensorSumAggregateOutputType

Name Type Nullable
id BigInt No

Oa_licensorMinAggregateOutputType

Name Type Nullable
id BigInt No
licensor_key String No
code String No
company_name String No
category String No
contact_name String No
contact_phone String No
contact_email String No
contact_mobile String No
s3_bucket_name String No
enable Boolean No
updated_user String No
updated_date DateTime No

Oa_licensorMaxAggregateOutputType

Name Type Nullable
id BigInt No
licensor_key String No
code String No
company_name String No
category String No
contact_name String No
contact_phone String No
contact_email String No
contact_mobile String No
s3_bucket_name String No
enable Boolean No
updated_user String No
updated_date DateTime No

Oa_system_codeCountAggregateOutputType

Name Type Nullable
code_type Int Yes
territory Int Yes
code_type_name Int Yes
show_sequence Int Yes
used_flag Int Yes
up_level_type Int Yes
memo Int Yes
enable Int Yes
created_user Int Yes
created_date Int Yes
updated_user Int Yes
updated_date Int Yes
code_type_name_local Int Yes
code_type_name_eng Int Yes
_all Int Yes

Oa_system_codeAvgAggregateOutputType

Name Type Nullable
show_sequence Float No

Oa_system_codeSumAggregateOutputType

Name Type Nullable
show_sequence Int No

Oa_system_codeMinAggregateOutputType

Name Type Nullable
code_type String No
territory String No
show_sequence Int No
used_flag Boolean No
up_level_type String No
memo String No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No
code_type_name_local String No
code_type_name_eng String No

Oa_system_codeMaxAggregateOutputType

Name Type Nullable
code_type String No
territory String No
show_sequence Int No
used_flag Boolean No
up_level_type String No
memo String No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No
code_type_name_local String No
code_type_name_eng String No

Oa_system_code_detailCountAggregateOutputType

Name Type Nullable
id Int Yes
code_type Int Yes
territory Int Yes
code Int Yes
code_group Int Yes
value_type Int Yes
code_name Int Yes
code_parameter Int Yes
show_sequence Int Yes
used_flag Int Yes
up_level_type Int Yes
memo Int Yes
enable Int Yes
created_user Int Yes
created_date Int Yes
updated_user Int Yes
updated_date Int Yes
code_name_local Int Yes
code_name_eng Int Yes
_all Int Yes

Oa_system_code_detailAvgAggregateOutputType

Name Type Nullable
id Float No
show_sequence Float No

Oa_system_code_detailSumAggregateOutputType

Name Type Nullable
id BigInt No
show_sequence Int No

Oa_system_code_detailMinAggregateOutputType

Name Type Nullable
id BigInt No
code_type String No
territory String No
code String No
code_group String No
value_type String No
show_sequence Int No
used_flag Boolean No
up_level_type String No
memo String No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No
code_name_local String No
code_name_eng String No

Oa_system_code_detailMaxAggregateOutputType

Name Type Nullable
id BigInt No
code_type String No
territory String No
code String No
code_group String No
value_type String No
show_sequence Int No
used_flag Boolean No
up_level_type String No
memo String No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No
code_name_local String No
code_name_eng String No

Oa_task_jobCountAggregateOutputType

Name Type Nullable
id Int Yes
task_label Int Yes
job_name Int Yes
task_name Int Yes
task_target Int Yes
execution_time Int Yes
execution_script Int Yes
execution_log Int Yes
executed Int Yes
exec_start_date Int Yes
exec_end_date Int Yes
enable Int Yes
created_user Int Yes
created_date Int Yes
updated_user Int Yes
updated_date Int Yes
_all Int Yes

Oa_task_jobAvgAggregateOutputType

Name Type Nullable
id Float No
executed Float No
enable Float No

Oa_task_jobSumAggregateOutputType

Name Type Nullable
id BigInt No
executed Int No
enable Int No

Oa_task_jobMinAggregateOutputType

Name Type Nullable
id BigInt No
task_label String No
job_name String No
task_name String No
task_target String No
execution_time DateTime No
execution_script String No
executed Int No
exec_start_date DateTime No
exec_end_date DateTime No
enable Int No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

Oa_task_jobMaxAggregateOutputType

Name Type Nullable
id BigInt No
task_label String No
job_name String No
task_name String No
task_target String No
execution_time DateTime No
execution_script String No
executed Int No
exec_start_date DateTime No
exec_end_date DateTime No
enable Int No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

Oa_territoryCountAggregateOutputType

Name Type Nullable
id Int Yes
code Int Yes
title Int Yes
default_territory Int Yes
language Int Yes
default_language Int Yes
timezone Int Yes
priority Int Yes
updated_user Int Yes
updated_date Int Yes
_all Int Yes

Oa_territoryAvgAggregateOutputType

Name Type Nullable
priority Float No

Oa_territorySumAggregateOutputType

Name Type Nullable
priority Int No

Oa_territoryMinAggregateOutputType

Name Type Nullable
id String No
code String No
title String No
default_territory String No
language String No
default_language String No
timezone String No
priority Int No
updated_user String No
updated_date DateTime No

Oa_territoryMaxAggregateOutputType

Name Type Nullable
id String No
code String No
title String No
default_territory String No
language String No
default_language String No
timezone String No
priority Int No
updated_user String No
updated_date DateTime No

System_functionCountAggregateOutputType

Name Type Nullable
id Int Yes
menu_id Int Yes
name Int Yes
show_name Int Yes
icon Int Yes
type Int Yes
enable Int Yes
created_user Int Yes
created_date Int Yes
updated_user Int Yes
updated_date Int Yes
_all Int Yes

System_functionMinAggregateOutputType

Name Type Nullable
id String No
menu_id String No
name String No
show_name String No
icon String No
type String No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

System_functionMaxAggregateOutputType

Name Type Nullable
id String No
menu_id String No
name String No
show_name String No
icon String No
type String No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

System_menuCountAggregateOutputType

Name Type Nullable
id Int Yes
cascade_id Int Yes
name Int Yes
pathname Int Yes
icon Int Yes
show_in_menu Int Yes
is_web_page Int Yes
is_need_login Int Yes
parent_id Int Yes
table_memo Int Yes
sort Int Yes
enable Int Yes
created_user Int Yes
created_date Int Yes
updated_user Int Yes
updated_date Int Yes
_all Int Yes

System_menuAvgAggregateOutputType

Name Type Nullable
sort Float No

System_menuSumAggregateOutputType

Name Type Nullable
sort Int No

System_menuMinAggregateOutputType

Name Type Nullable
id String No
cascade_id String No
name String No
pathname String No
icon String No
show_in_menu Boolean No
is_web_page Boolean No
is_need_login Boolean No
parent_id String No
table_memo String No
sort Int No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

System_menuMaxAggregateOutputType

Name Type Nullable
id String No
cascade_id String No
name String No
pathname String No
icon String No
show_in_menu Boolean No
is_web_page Boolean No
is_need_login Boolean No
parent_id String No
table_memo String No
sort Int No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

System_relevanceCountAggregateOutputType

Name Type Nullable
id Int Yes
memo Int Yes
type Int Yes
first_id Int Yes
second_id Int Yes
third_id Int Yes
enable Int Yes
created_user Int Yes
created_date Int Yes
updated_user Int Yes
updated_date Int Yes
_all Int Yes

System_relevanceMinAggregateOutputType

Name Type Nullable
id String No
memo String No
type String No
first_id String No
second_id String No
third_id String No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

System_relevanceMaxAggregateOutputType

Name Type Nullable
id String No
memo String No
type String No
first_id String No
second_id String No
third_id String No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

System_roleCountAggregateOutputType

Name Type Nullable
id Int Yes
code Int Yes
name Int Yes
enable Int Yes
created_user Int Yes
created_date Int Yes
updated_user Int Yes
updated_date Int Yes
_all Int Yes

System_roleMinAggregateOutputType

Name Type Nullable
id String No
code String No
name String No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

System_roleMaxAggregateOutputType

Name Type Nullable
id String No
code String No
name String No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

System_userCountAggregateOutputType

Name Type Nullable
id Int Yes
provider_id Int Yes
provider Int Yes
display_name Int Yes
family_name Int Yes
given_name Int Yes
email Int Yes
email_verified Int Yes
password Int Yes
language Int Yes
locale Int Yes
picture Int Yes
enable Int Yes
created_user Int Yes
created_date Int Yes
updated_user Int Yes
updated_date Int Yes
_all Int Yes

System_userMinAggregateOutputType

Name Type Nullable
id String No
provider_id String No
provider String No
display_name String No
family_name String No
given_name String No
email String No
email_verified Boolean No
password String No
language String No
locale String No
picture String No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

System_userMaxAggregateOutputType

Name Type Nullable
id String No
provider_id String No
provider String No
display_name String No
family_name String No
given_name String No
email String No
email_verified Boolean No
password String No
language String No
locale String No
picture String No
enable Boolean No
created_user String No
created_date DateTime No
updated_user String No
updated_date DateTime No

AccountCountAggregateOutputType

Name Type Nullable
id Int Yes
userId Int Yes
type Int Yes
provider Int Yes
providerAccountId Int Yes
refresh_token Int Yes
access_token Int Yes
expires_at Int Yes
token_type Int Yes
scope Int Yes
id_token Int Yes
session_state Int Yes
_all Int Yes

AccountAvgAggregateOutputType

Name Type Nullable
expires_at Float No

AccountSumAggregateOutputType

Name Type Nullable
expires_at Int No

AccountMinAggregateOutputType

Name Type Nullable
id String No
userId String No
type String No
provider String No
providerAccountId String No
refresh_token String No
access_token String No
expires_at Int No
token_type String No
scope String No
id_token String No
session_state String No

AccountMaxAggregateOutputType

Name Type Nullable
id String No
userId String No
type String No
provider String No
providerAccountId String No
refresh_token String No
access_token String No
expires_at Int No
token_type String No
scope String No
id_token String No
session_state String No

SessionCountAggregateOutputType

Name Type Nullable
id Int Yes
sessionToken Int Yes
userId Int Yes
expires Int Yes
_all Int Yes

SessionMinAggregateOutputType

Name Type Nullable
id String No
sessionToken String No
userId String No
expires DateTime No

SessionMaxAggregateOutputType

Name Type Nullable
id String No
sessionToken String No
userId String No
expires DateTime No

UserCountOutputType

Name Type Nullable
accounts Int Yes
sessions Int Yes

UserCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
email Int Yes
emailVerified Int Yes
image Int Yes
_all Int Yes

UserMinAggregateOutputType

Name Type Nullable
id String No
name String No
email String No
emailVerified DateTime No
image String No

UserMaxAggregateOutputType

Name Type Nullable
id String No
name String No
email String No
emailVerified DateTime No
image String No

VerificationTokenCountAggregateOutputType

Name Type Nullable
identifier Int Yes
token Int Yes
expires Int Yes
_all Int Yes

VerificationTokenMinAggregateOutputType

Name Type Nullable
identifier String No
token String No
expires DateTime No

VerificationTokenMaxAggregateOutputType

Name Type Nullable
identifier String No
token String No
expires DateTime No